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 e136a67 commit 50bd4a7Copy full SHA for 50bd4a7
.github/workflows/continuous-builds.yml
@@ -51,4 +51,20 @@ jobs:
51
uses: actions/upload-artifact@v2.1.4
52
with:
53
name: bash
54
- path: './bash*.AppImage*'
+ path: './bash*.AppImage*'
55
+ upload-continuous-releases:
56
+ runs-on: ubuntu-20.04
57
+ needs: test
58
+ if: github.ref == 'refs/heads/master'
59
+ steps:
60
+ - uses: actions/checkout@v2
61
+ - name: Download AppImage from build job
62
+ uses: actions/download-artifact@v2
63
+ with:
64
+ name: appimage-builder
65
+ - uses: "marvinpinto/action-automatic-releases@latest"
66
67
+ repo_token: "${{ secrets.GITHUB_TOKEN }}"
68
+ prerelease: true
69
+ automatic_release_tag: Continuous
70
+ files: './appimage-builder*.AppImage*'
.github/workflows/continuous-releases.yml
0 commit comments