Commit 0293678 1 parent e510896 commit 0293678 Copy full SHA for 0293678
File tree 2 files changed +27
-1
lines changed
2 files changed +27
-1
lines changed Original file line number Diff line number Diff line change
1
+ name : Batch Jobs
2
+
3
+ on :
4
+ schedule : [cron: "0 */2 * * *"] # Every other hour on the hour
5
+ workflow_dispatch :
6
+
7
+ concurrency :
8
+ group : ${{ github.workflow }}
9
+ cancel-in-progress : false
10
+
11
+ jobs :
12
+ etl-test :
13
+ environment : test
14
+ name : ETL (TEST)
15
+ runs-on : ubuntu-latest
16
+ steps :
17
+ - uses : actions/checkout@v4
18
+ with :
19
+ ref : ${{ github.ref }}
20
+ - uses : redhat-actions/openshift-tools-installer@v1
21
+ with :
22
+ oc : " 4"
23
+ - name : Run ./sync/oc_run.sh
24
+ run : ./sync/oc_run.sh test ${{ secrets.oc_token }}
Original file line number Diff line number Diff line change 68
68
registry : ghcr.io
69
69
repository : ${{ github.repository }}/${{ matrix.component }}
70
70
target : ${{ needs.deploy.outputs.tag }}
71
- tags : prod
71
+ tags : |
72
+ prod
73
+ ${{ github.event.release.tag_name }}
You can’t perform that action at this time.
0 commit comments