Bump croniter from 3.0.4 to 5.0.1 (#685) #1038
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Docker Develop Release | |
on: | |
push: | |
branches: [ develop ] | |
jobs: | |
docker-develop: | |
runs-on: ubuntu-latest | |
steps: | |
- name: set lower case owner name | |
run: | | |
echo "OWNER_LC=${OWNER,,}" >>${GITHUB_ENV} | |
env: | |
OWNER: '${{ github.repository_owner }}' | |
- name: Check Out Repo | |
uses: actions/checkout@v4 | |
with: | |
ref: develop | |
- name: Trigger Hotio Webhook | |
uses: joelwmale/webhook-action@master | |
with: | |
url: ${{ secrets.HOTIO_WEBHOOK_URL }} | |
headers: '{"Authorization": "Bearer ${{ secrets.HOTIO_WEBHOOK_SECRET }}"}' | |
body: '{ "application": "qbitmanage", "branch": "nightly" }' | |
- name: Login to Docker Hub | |
uses: docker/login-action@v3 | |
with: | |
username: ${{ secrets.DOCKER_HUB_USERNAME }} | |
password: ${{ secrets.DOCKER_HUB_ACCESS_TOKEN }} | |
- name: Login to ghcr.io | |
uses: docker/login-action@v3 | |
with: | |
registry: ghcr.io | |
username: ${{ env.OWNER_LC }} | |
password: ${{ secrets.GHCR_TOKEN }} | |
- name: Set up QEMU | |
uses: docker/setup-qemu-action@master | |
with: | |
platforms: all | |
- name: Set up Docker Buildx | |
id: buildx | |
uses: docker/setup-buildx-action@v3 | |
- name: Build and push | |
id: docker_build | |
uses: docker/build-push-action@v6 | |
with: | |
context: ./ | |
file: ./Dockerfile | |
build-args: | | |
"BRANCH_NAME=develop" | |
platforms: linux/amd64,linux/arm64,linux/arm/v7 | |
push: true | |
tags: | | |
${{ secrets.DOCKER_HUB_USERNAME }}/qbit_manage:develop | |
ghcr.io/${{ env.OWNER_LC }}/qbit_manage:develop |