Skip to content

Commit 579f572

Browse files
committed
refactor: publish appimage before pip package
1 parent 5e43105 commit 579f572

File tree

1 file changed

+14
-14
lines changed

1 file changed

+14
-14
lines changed

.github/workflows/stable-releases.yml

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -57,6 +57,20 @@ jobs:
5757
with:
5858
name: bash
5959
path: './bash*.AppImage*'
60+
publish-appimage:
61+
runs-on: ubuntu-20.04
62+
needs: test
63+
steps:
64+
- uses: actions/checkout@v2
65+
- name: Download AppImage from build job
66+
uses: actions/download-artifact@v2
67+
with:
68+
name: appimage-builder
69+
- uses: "marvinpinto/action-automatic-releases@latest"
70+
with:
71+
repo_token: "${{ secrets.GITHUB_TOKEN }}"
72+
prerelease: false
73+
files: './appimage-builder*.AppImage*'
6074
publish-python-wheel:
6175
runs-on: ubuntu-latest
6276
needs: test
@@ -77,17 +91,3 @@ jobs:
7791
run: |
7892
python setup.py sdist bdist_wheel
7993
twine upload dist/*
80-
publish-appimage:
81-
runs-on: ubuntu-20.04
82-
needs: test
83-
steps:
84-
- uses: actions/checkout@v2
85-
- name: Download AppImage from build job
86-
uses: actions/download-artifact@v2
87-
with:
88-
name: appimage-builder
89-
- uses: "marvinpinto/action-automatic-releases@latest"
90-
with:
91-
repo_token: "${{ secrets.GITHUB_TOKEN }}"
92-
prerelease: false
93-
files: './appimage-builder*.AppImage*'

0 commit comments

Comments
 (0)