ci #59
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: ci | |
on: | |
push: | |
schedule: | |
- cron: "0 9 * * TUE" | |
jobs: | |
buildx: | |
runs-on: ubuntu-latest | |
steps: | |
- | |
name: Checkout | |
uses: actions/[email protected] | |
- | |
name: Set up QEMU | |
uses: docker/[email protected] | |
- | |
name: Docker Setup Buildx | |
uses: docker/[email protected] | |
with: | |
config-inline: | | |
[worker.oci] | |
platforms = [ "linux/amd64", "linux/arm64" ] | |
- | |
name: Docker login | |
run: echo ${{ secrets.DOCKER_HUB }} | docker login -u pfremm --password-stdin | |
- | |
name: Build | |
run: | | |
docker buildx build . -t pfremm/auto-southwest-check-in --push --platform=linux/arm64 |