Skip to content

refactor github action workflows #34

refactor github action workflows

refactor github action workflows #34

name: Deployment
on:
release:
types: [created]
jobs:
quality:
uses: ./.github/workflows/quality-shellcheck.yml
build:
needs: quality
uses: ./.github/workflows/build-deb-file.yml
test:
needs: build
uses: .github/workflows/workflow-run-all-tests.yml

Check failure on line 14 in .github/workflows/workflow-deployments.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/workflow-deployments.yml

Invalid workflow file

invalid value workflow reference: no version specified
release-assets:
needs: test
uses: ./.github/workflows/deploy-github-release-assets.yml
secrets:
TOKEN_TO_UPLOAD_ASSETS: ${{ secrets.TOKEN_TO_UPLOAD_ASSETS }}
siakhooi-apt:
needs: test
uses: ./.github/workflows/publish-to-siakhooi-apt.yml
secrets:
PUBLISH_TO_APT_GITHUB_TOKEN: ${{ secrets.PUBLISH_TO_APT_GITHUB_TOKEN }}