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.
2 parents f44b06a + 199ac31 commit 56b0f5fCopy full SHA for 56b0f5f
.github/workflows/assets.yml
@@ -0,0 +1,29 @@
1
+name: Release assets
2
+
3
+on:
4
+ push:
5
+ tags:
6
+ - '*.*.*'
7
8
+jobs:
9
+ assets:
10
+ runs-on: ubuntu-latest
11
12
+ steps:
13
+ - name: Checkout
14
+ uses: actions/checkout@v2
15
+ with:
16
+ fetch-depth: 1
17
18
+ - name: Build release assets
19
+ run: make release
20
21
+ - name: Upload release assets
22
+ uses: alexellis/[email protected]
23
+ env:
24
+ GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
25
26
+ asset_paths: '["./docker-gen-*.tar.gz"]'
27
28
+ - name: Cleanup release assets
29
+ run: make dist-clean
0 commit comments