Skip to content

Commit

Permalink
ci: bundle nightly version (try 2/n) (#846)
Browse files Browse the repository at this point in the history
  • Loading branch information
cosven authored Jun 30, 2024
1 parent 939151e commit f093463
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/macos-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,9 @@ jobs:
steps:
- uses: actions/checkout@master
- name: Set up Python
uses: actions/setup-python@v1
uses: actions/setup-python@v5
with:
python-version: "3.10"
python-version: "3.11"
- name: Build
run: |
python -m pip install --upgrade pip
Expand All @@ -47,17 +47,17 @@ jobs:
- name: Upload artifact
uses: actions/upload-artifact@v3
with:
name: FeelUOwnX.zip
path: dist/FeelUOwnX.zip
name: FeelUOwnX-macOS{{ env.DIST_MACOS_VERSION }}-{{ env.DIST_ARCH }.zip
path: dist/FeelUOwnX-macOS{{ env.DIST_MACOS_VERSION }}-{{ env.DIST_ARCH }.zip
- name: Upload to release page
if: startsWith(github.ref, 'refs/tags/v')
uses: softprops/action-gh-release@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
files: dist/FeelUOwnX-macOS{{ env.DIST_MACOS_VERSION }}-{{ env.DIST_ARCH }.zip
- name: Upload to release page
if: startsWith(github.ref, 'master')
- name: Upload to nightly
if: github.ref == 'refs/heads/master'
uses: softprops/action-gh-release@v2
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
Expand Down

0 comments on commit f093463

Please sign in to comment.