Skip to content
This repository has been archived by the owner on Nov 21, 2024. It is now read-only.

gh-actions: fix Dockerfile path #7

gh-actions: fix Dockerfile path

gh-actions: fix Dockerfile path #7

name: Push main
on:
push:
branches: [main]
defaults:
run:
shell: bash
jobs:
lint:
uses: ./.github/workflows/lint.yml
with:
ref: ${{ github.ref }}
test:
needs: lint
uses: ./.github/workflows/test-backoffice.yml
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 }}