Bump docker/build-push-action from 6.5.0 to 6.6.1 (#67) #201
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: Test Workflow | |
on: | |
workflow_dispatch: | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- main | |
jobs: | |
build_only_version_file_in_container: | |
name: "Build only, version: file_in_container" | |
uses: ./.github/workflows/build_and_push_image.yml | |
with: | |
push_enabled: false | |
ghcr_repo_owner: mikenye | |
ghcr_repo: ${{ github.repository }} | |
platform_linux_arm32v6_enabled: true | |
platform_linux_i386_enabled: true | |
build_nohealthcheck: false | |
get_version_method: file_in_container:file=/IMAGE_VERSION | |
secrets: | |
ghcr_token: ${{ secrets.GITHUB_TOKEN }} | |
build_only_version_cargo_toml_file_in_image: | |
name: "Build only, version: cargo_toml_file_in_image" | |
uses: ./.github/workflows/build_and_push_image.yml | |
with: | |
push_enabled: false | |
ghcr_repo_owner: mikenye | |
ghcr_repo: ${{ github.repository }} | |
platform_linux_arm32v6_enabled: true | |
platform_linux_i386_enabled: true | |
build_nohealthcheck: false | |
get_version_method: cargo_toml_file_in_image:file=/Cargo.toml | |
secrets: | |
ghcr_token: ${{ secrets.GITHUB_TOKEN }} | |
build_only_version_cargo_toml_file_in_repo: | |
name: "Build only, version: cargo_toml_file_in_repo" | |
uses: ./.github/workflows/build_and_push_image.yml | |
with: | |
push_enabled: false | |
ghcr_repo_owner: mikenye | |
ghcr_repo: ${{ github.repository }} | |
platform_linux_arm32v6_enabled: true | |
platform_linux_i386_enabled: true | |
build_nohealthcheck: false | |
get_version_method: cargo_toml_file_in_repo:file=/test_image_rootfs/Cargo.toml | |
secrets: | |
ghcr_token: ${{ secrets.GITHUB_TOKEN }} | |
build_only_version_git_commit_hash_short: | |
name: "Build only, version: git_commit_hash_short" | |
uses: ./.github/workflows/build_and_push_image.yml | |
with: | |
push_enabled: false | |
ghcr_repo_owner: mikenye | |
ghcr_repo: ${{ github.repository }} | |
platform_linux_arm32v6_enabled: true | |
platform_linux_i386_enabled: true | |
build_nohealthcheck: false | |
get_version_method: git_commit_hash_short | |
secrets: | |
ghcr_token: ${{ secrets.GITHUB_TOKEN }} | |
build_push_version_file_in_container: | |
name: "Build & Push, version: file_in_container" | |
uses: ./.github/workflows/build_and_push_image.yml | |
with: | |
push_enabled: true | |
ghcr_repo_owner: mikenye | |
ghcr_repo: ${{ github.repository }} | |
platform_linux_arm32v6_enabled: true | |
platform_linux_i386_enabled: true | |
build_nohealthcheck: false | |
secrets: | |
ghcr_token: ${{ secrets.GITHUB_TOKEN }} | |
build_push_version_cargo_toml_file_in_image: | |
name: "Build & Push, version: cargo_toml_file_in_image" | |
uses: ./.github/workflows/build_and_push_image.yml | |
with: | |
push_enabled: true | |
ghcr_repo_owner: mikenye | |
ghcr_repo: ${{ github.repository }} | |
platform_linux_arm32v6_enabled: true | |
platform_linux_i386_enabled: true | |
build_nohealthcheck: false | |
get_version_method: cargo_toml_file_in_image:file=/Cargo.toml | |
secrets: | |
ghcr_token: ${{ secrets.GITHUB_TOKEN }} | |
build_push_version_cargo_toml_file_in_repo: | |
name: "Build & Push, version: cargo_toml_file_in_repo" | |
uses: ./.github/workflows/build_and_push_image.yml | |
with: | |
push_enabled: true | |
ghcr_repo_owner: mikenye | |
ghcr_repo: ${{ github.repository }} | |
platform_linux_arm32v6_enabled: true | |
platform_linux_i386_enabled: true | |
build_nohealthcheck: false | |
get_version_method: cargo_toml_file_in_repo:file=/test_image_rootfs/Cargo.toml | |
secrets: | |
ghcr_token: ${{ secrets.GITHUB_TOKEN }} | |
build_push_version_git_commit_hash_short: | |
name: "Build & Push, version: git_commit_hash_short" | |
uses: ./.github/workflows/build_and_push_image.yml | |
with: | |
push_enabled: true | |
ghcr_repo_owner: mikenye | |
ghcr_repo: ${{ github.repository }} | |
platform_linux_arm32v6_enabled: true | |
platform_linux_i386_enabled: true | |
build_nohealthcheck: false | |
get_version_method: git_commit_hash_short | |
secrets: | |
ghcr_token: ${{ secrets.GITHUB_TOKEN }} | |
build_only_nohealthcheck: | |
name: "Build only, nohealthcheck" | |
uses: ./.github/workflows/build_and_push_image.yml | |
with: | |
push_enabled: false | |
ghcr_repo_owner: mikenye | |
ghcr_repo: ${{ github.repository }} | |
platform_linux_arm32v6_enabled: true | |
platform_linux_i386_enabled: true | |
secrets: | |
ghcr_token: ${{ secrets.GITHUB_TOKEN }} | |
build_push_nohealthcheck: | |
uses: ./.github/workflows/build_and_push_image.yml | |
name: "Build & Push, nohealthcheck" | |
with: | |
push_enabled: true | |
ghcr_repo_owner: mikenye | |
ghcr_repo: ${{ github.repository }} | |
platform_linux_arm32v6_enabled: true | |
platform_linux_i386_enabled: true | |
secrets: | |
ghcr_token: ${{ secrets.GITHUB_TOKEN }} | |
build_test: | |
uses: ./.github/workflows/build_and_push_image.yml | |
name: "Build & Push Test, nohealthcheck" | |
with: | |
push_enabled: true | |
ghcr_repo_owner: mikenye | |
ghcr_repo: ${{ github.repository }} | |
build_latest: false | |
build_test: true | |
secrets: | |
ghcr_token: ${{ secrets.GITHUB_TOKEN }} | |
populate_cache: | |
name: "Populate cache" | |
runs-on: ubuntu-latest | |
steps: | |
# Check out code | |
- name: Checkout | |
uses: actions/[email protected] | |
with: | |
fetch-depth: 0 | |
- name: "Make some data to cache" | |
run: | | |
mkdir -p ./cache | |
dd if=/dev/zero of=./cache/data bs=4k count=50 | |
ls -la ./cache/data | |
# Populate cache | |
- name: "Populate cache" | |
id: populate_cache | |
uses: actions/[email protected] | |
with: | |
path: ./cache | |
key: ${{ github.run_id }} | |
check_cache: | |
name: "Check cache" | |
needs: [populate_cache] | |
uses: ./.github/workflows/build_and_push_image.yml | |
with: | |
push_enabled: false | |
ghcr_repo_owner: mikenye | |
ghcr_repo: ${{ github.repository }} | |
cache_enabled: true | |
cache_path: ./cache | |
cache_key: ${{ github.run_id }} | |
secrets: | |
ghcr_token: ${{ secrets.GITHUB_TOKEN }} |