Skip to content

Commit 026dd49

Browse files
authored
Create first workflow
1 parent d23923a commit 026dd49

File tree

1 file changed

+25
-0
lines changed

1 file changed

+25
-0
lines changed

.github/workflows/main.yml

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)