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 70b420c commit a39f44dCopy full SHA for a39f44d
.github/workflows/ci.yml
@@ -1,5 +1,5 @@
1
name: ci
2
-on: [push]
+on: [push, release]
3
jobs:
4
build:
5
runs-on: ubuntu-latest
@@ -40,3 +40,16 @@ jobs:
40
with:
41
name: go-datatrails-common-api-swagger
42
path: exported/swagger
43
+
44
+ release:
45
+ runs-on: ubuntu-latest
46
+ if: ${{ github.event_name == 'release' }}
47
+ needs: build
48
+ steps:
49
+ - uses: actions/download-artefiact@v3
50
+ with:
51
+ name: go-datatrails-common-api-proto
52
+ path: exported/proto-include
53
+ - name: show files
54
+ working-directory: exported/proto-include
55
+ run: ls -R
0 commit comments