test if python 3.8 restores Win7 #18
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: Docker | |
on: | |
workflow_dispatch: | |
push: | |
# Publish semver tags as releases. | |
tags: [ 'v*.*.*' ] | |
# Don't trigger if it's just a documentation update | |
paths-ignore: | |
- '**.md' | |
- '**.MD' | |
- '**.yml' | |
- 'docs/**' | |
- 'LICENSE' | |
- '.gitattributes' | |
- '.gitignore' | |
- '.dockerignore' | |
jobs: | |
build_and_push: | |
uses: sdr-enthusiasts/common-github-workflows/.github/workflows/build_and_push_image.yml@main | |
with: | |
platform_linux_arm32v7_enabled: true | |
platform_linux_arm64v8_enabled: true | |
platform_linux_amd64_enabled: true | |
push_enabled: true | |
build_nohealthcheck: false | |
ghcr_repo_owner: ${{ github.repository_owner }} | |
ghcr_repo: ${{ github.repository }} | |
secrets: | |
ghcr_token: ${{ secrets.GITHUB_TOKEN }} |