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 d9aab10 commit 58a0a89Copy full SHA for 58a0a89
.github/workflows/ci.yml
@@ -63,3 +63,22 @@ jobs:
63
with:
64
name: libraries-catalina-macos.tar.xz
65
path: libraries-catalina-macos.tar.xz
66
+ CreateRelease:
67
+ needs: [macOS, Docker_Linux]
68
+ runs-on: ubuntu-latest
69
+ steps:
70
+ - name: Download all artifacts
71
+ if: github.event_name == 'push' && github.ref == 'refs/heads/master'
72
+ uses: actions/download-artifact@v2
73
+ with:
74
+ path: releases
75
+ - name: Verify Artifact Downloads
76
77
+ run: ls -R
78
+ - name: Publish Release
79
80
+ uses: softprops/action-gh-release@v1
81
82
+ files: releases/*/*.xz
83
+ env:
84
+ GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
0 commit comments