Refactor build workflow and add check for update #1556
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: build | ||
on: | ||
schedule: | ||
- cron: "0 12 * * *" | ||
push: | ||
paths-ignore: | ||
- "*.md" | ||
- "*.txt" | ||
- "*.png" | ||
pull_request: | ||
workflow_dispatch: | ||
jobs: | ||
verify: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v2 | ||
with: | ||
fetch-depth: 0 # for proper signature verification | ||
- name: Verify signature | ||
if: github.repository == 'atmoz/sftp' | ||
uses: atmoz/git-verify-ref@master | ||
with: | ||
import-github-users: atmoz | ||
- name: Run ShellCheck | ||
uses: ludeeus/action-shellcheck@master | ||
with: | ||
ignore_paths: tests/shunit2 | ||
alpine: | ||
needs: verify | ||
uses: ./.github/workflows/build-image.yml | ||
Check failure on line 35 in .github/workflows/build.yml GitHub Actions / buildInvalid workflow file
|
||
with: | ||
containerfile: Dockerfile-alpine | ||
image: $GITHUB_REPOSITORY | ||
tag: alpine | ||
update-check: "apk update &>/dev/null && apk version -q -l '>'" | ||
secrets: inherit | ||
debian: | ||
needs: verify | ||
uses: ./.github/workflows/build-image.yml | ||
with: | ||
containerfile: Dockerfile | ||
image: $GITHUB_REPOSITORY | ||
tag: debian | ||
update-check: "apt-get update &>/dev/null && apt-get upgrade -s | grep ^Inst" | ||
secrets: inherit |