✨ Add support for multiarch builds, including ARM (e.g. Mac M1) #26
Workflow file for this run
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: Latest Changes | |
on: | |
pull_request_target: | |
branches: | |
- master | |
types: | |
- closed | |
workflow_dispatch: | |
inputs: | |
number: | |
description: PR number | |
required: true | |
debug_enabled: | |
description: 'Run the build with tmate debugging enabled (https://github.com/marketplace/actions/debugging-with-tmate)' | |
required: false | |
default: 'false' | |
jobs: | |
latest-changes: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
# To allow latest-changes to commit to master | |
token: ${{ secrets.NGINX_RTMP_DOCKER_LATEST_CHANGES }} | |
- uses: docker://tiangolo/latest-changes:0.2.0 | |
# - uses: tiangolo/latest-changes@main | |
with: | |
token: ${{ secrets.GITHUB_TOKEN }} |