File tree Expand file tree Collapse file tree 2 files changed +12
-10
lines changed
Expand file tree Collapse file tree 2 files changed +12
-10
lines changed Original file line number Diff line number Diff line change 66
77name : Publish monitoring image to Docker Registry (on new release tag)
88on :
9- push :
10- tags :
11- # To modify to trigger the job for fork's releases
12- # Note: GitHub's filter pattern capabilities are limited[1], so this
13- # pattern matches more often than it should. A more correct regex would
14- # be the one found in scripts/tag.sh.
15- # [1] https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#filter-pattern-cheat-sheet
16- - " interuss/monitoring/v[0-9]+.[0-9]+.[0-9]+-?*"
9+ pull_request : # TODO: added for testing purposes, remove me before merging
10+ # push:
11+ # tags:
12+ # # To modify to trigger the job for fork's releases
13+ # # Note: GitHub's filter pattern capabilities are limited[1], so this
14+ # # pattern matches more often than it should. A more correct regex would
15+ # # be the one found in scripts/tag.sh.
16+ # # [1] https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#filter-pattern-cheat-sheet
17+ # - "interuss/monitoring/v[0-9]+.[0-9]+.[0-9]+-?*"
1718permissions :
1819 contents : read
1920jobs :
5455 - name : Build, push and sign image
5556 env :
5657 DOCKER_URL : ${{ secrets.DOCKER_URL }}
57- DOCKER_UPDATE_LATEST : true
58+ DOCKER_UPDATE_LATEST : false # TODO: changed for testing purposes, revert me to ' true' before merging
5859 DOCKER_SIGN : true
5960 CERT_IDENTITY : https://github.com/${{ github.workflow_ref }}
6061 CERT_ISSUER : https://token.actions.githubusercontent.com
Original file line number Diff line number Diff line change 2727fi
2828cd " ${BASEDIR} "
2929
30- VERSION=$( ./scripts/git/version.sh monitoring)
30+ # VERSION=$(./scripts/git/version.sh monitoring)
31+ VERSION=cosign-test-bis
3132LATEST_TAG=" latest"
3233
3334if [[ -z " ${DOCKER_URL} " ]]; then
You can’t perform that action at this time.
0 commit comments