Skip to content

Commit

Permalink
Testing .github@develop w/ platform defined
Browse files Browse the repository at this point in the history
  • Loading branch information
JS Fillman committed Apr 24, 2024
1 parent 0274fca commit 2c1c1fe
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/pr_build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,32 +15,32 @@ jobs:
build-develop-open:
if: github.base_ref == 'develop' && github.event.pull_request.merged == false
uses: kbase/.github/.github/workflows/reusable_build.yml@develop
# with:
# platforms: "linux/amd64,linux/arm64/v8"
with:
platforms: "linux/amd64,linux/arm64/v8"
secrets: inherit
build-develop-merge:
if: github.base_ref == 'develop' && github.event.pull_request.merged == true
uses: kbase/.github/.github/workflows/reusable_build-push.yml@develop
with:
name: '${{ github.event.repository.name }}-develop'
tags: pr-${{ github.event.number }},latest
# platforms: "linux/amd64,linux/arm64/v8"
platforms: "linux/amd64,linux/arm64/v8"
secrets: inherit
build-main-open:
if: (github.base_ref == 'main' || github.base_ref == 'master') && github.event.pull_request.merged == false
uses: kbase/.github/.github/workflows/reusable_build-push.yml@develop
with:
name: '${{ github.event.repository.name }}'
tags: pr-${{ github.event.number }}
# platforms: "linux/amd64,linux/arm64/v8"
platforms: "linux/amd64,linux/arm64/v8"
secrets: inherit
build-main-merge:
if: (github.base_ref == 'main' || github.base_ref == 'master') && github.event.pull_request.merged == true
uses: kbase/.github/.github/workflows/reusable_build-push.yml@develop
with:
name: '${{ github.event.repository.name }}'
tags: pr-${{ github.event.number }},latest-rc
# platforms: "linux/amd64,linux/arm64/v8"
platforms: "linux/amd64,linux/arm64/v8"
secrets: inherit
trivy-scans:
if: (github.base_ref == 'develop' || github.base_ref == 'main' || github.base_ref == 'master' ) && github.event.pull_request.merged == false
Expand Down
2 changes: 1 addition & 1 deletion app/README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@

## Zip2Cloud

A robust zip & upload utility for sending archives to a remote location.
A robust zip & upload utility for sending archives to any destination supported by [rclone](https://rclone.org/).

### Features

Expand Down

0 comments on commit 2c1c1fe

Please sign in to comment.