This repository has been archived by the owner on Nov 21, 2024. It is now read-only.
Bump cern-sis/gh-workflows from 6.2.0 to 6.3.1 #4
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: Push main | ||
on: | ||
push: | ||
branches: [main] | ||
paths: | ||
- 'backoffice/**' | ||
defaults: | ||
run: | ||
shell: bash | ||
jobs: | ||
lint: | ||
uses: ./.github/workflows/lint.yml | ||
with: | ||
ref: ${{ github.ref }} | ||
test: | ||
needs: lint | ||
uses: ./.github/workflows/backoffice/test.yml | ||
Check failure on line 20 in .github/workflows/push-main-backoffice.yml GitHub Actions / .github/workflows/push-main-backoffice.ymlInvalid workflow file
|
||
with: | ||
ref: ${{ github.ref }} | ||
secrets: inherit | ||
deploy: | ||
needs: test | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: send event | ||
uses: cern-sis/gh-workflows/.github/actions/[email protected] | ||
with: | ||
event-type: update | ||
images: | | ||
cern-sis/inspire/backoffice@${{ needs.test.outputs.image-id }} | ||
token: ${{ secrets.PAT_FIRE_EVENTS_ON_CERN_SIS_KUBERNETES }} |