We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d23923a commit 026dd49Copy full SHA for 026dd49
.github/workflows/main.yml
@@ -0,0 +1,25 @@
1
+name: Publish release on github
2
+on:
3
+ push:
4
+ tags:
5
+ - '*'
6
+jobs:
7
+ build:
8
+ runs-on: ${{ matrix.os }}
9
+ strategy:
10
+ fail-fast: false
11
+ matrix:
12
+ os:
13
+ - ubuntu-latest
14
+ go:
15
+ - '1.20'
16
+ steps:
17
+ - name: checkout qe-platform repo
18
+ uses: actions/checkout@master
19
+ with:
20
+ name: https://gitlab.cee.redhat.com/crc/qe-platform
21
+ ref: master
22
+ - name: Show Working directory
23
+ run: ls
24
+ - name: run script
25
+ run: echo ${{ <context> }}
0 commit comments