Skip to content

Commit

Permalink
Merge PR mumble-voip#37: Update workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
Krzmbrzl authored Jan 7, 2024
2 parents f113629 + 670a8ee commit da48cf4
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/build_and_publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,17 +24,17 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
uses: actions/checkout@v4

- name: Set up QEMU
uses: docker/setup-qemu-action@v2
uses: docker/setup-qemu-action@v3

- name: Set up Docker Build
uses: docker/setup-buildx-action@v2
uses: docker/setup-buildx-action@v3

- name: Login to DockerHub
if: ${{ inputs.publish }}
uses: docker/login-action@v2
uses: docker/login-action@v3
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
Expand All @@ -48,7 +48,7 @@ jobs:
run: echo "TAGS=mumblevoip/mumble-server:${{ inputs.mumble_version }}, mumblevoip/mumble-server:${{ inputs.mumble_version }}-${{ inputs.docker_version }}" >> $GITHUB_ENV

- name: Build and push
uses: docker/build-push-action@v2
uses: docker/build-push-action@v5
with:
context: .
platforms: ${{ inputs.platforms }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,4 +36,4 @@ jobs:
docker_version: '0'
publish: false
update_latest: true
platforms: "linux/amd64"
platforms: "linux/amd64,linux/arm64"
2 changes: 1 addition & 1 deletion .github/workflows/manual_dispatch.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,5 +28,5 @@ jobs:
docker_version: ${{ github.event.inputs.docker_version }}
publish: ${{ github.event.inputs.publish == 'true' }}
update_latest: ${{ github.event.inputs.update_latest == 'true' }}
platforms: "linux/amd64"
platforms: "linux/amd64,linux/arm64"
secrets: inherit
2 changes: 1 addition & 1 deletion .github/workflows/upstream_release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,5 +12,5 @@ jobs:
docker_version: '0'
publish: true
update_latest: ${{ github.event.client_payload.is_latest }}
platforms: "linux/amd64"
platforms: "linux/amd64,linux/arm64"
secrets: inherit

0 comments on commit da48cf4

Please sign in to comment.