Skip to content

Refactor build workflow and add check for update #1550

Refactor build workflow and add check for update

Refactor build workflow and add check for update #1550

Workflow file for this run

name: build
on:
schedule:
- cron: "0 12 * * *"
push:
paths-ignore:
- "*.md"
- "*.txt"
- "*.png"
pull_request:
jobs:
build-images:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
with:
submodules: true # for shunit2
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
- name: alpine
uses: ./.github/actions/build-image
with:
image: $GITHUB_REPOSITORY
tag: alpine
update-check: apk update &>/dev/null && apk version -q -l '>'
github-token: ${{ secrets.GITHUB_TOKEN }}
dockerhub-username: ${{ secrets.DOCKER_HUB_USERNAME }}
dockerhub-password: ${{ secrets.DOCKER_HUB_PASSWORD }}
- name: debian
uses: ./.github/actions/build-image
with:
image: $GITHUB_REPOSITORY
tag: debian
update-check: apt-get update &>/dev/null && apt-get upgrade -s | grep ^Inst
github-token: ${{ secrets.GITHUB_TOKEN }}
dockerhub-username: ${{ secrets.DOCKER_HUB_USERNAME }}
dockerhub-password: ${{ secrets.DOCKER_HUB_PASSWORD }}