Skip to content

Commit

Permalink
Workflows error
Browse files Browse the repository at this point in the history
  • Loading branch information
vpet98 committed Jun 18, 2024
1 parent 57a35d9 commit 27040ac
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 26 deletions.
30 changes: 4 additions & 26 deletions .github/workflows/pyinstaller.yml
Original file line number Diff line number Diff line change
Expand Up @@ -51,11 +51,6 @@ jobs:
spec: 'a10y.spec'
requirements: 'requirements.txt'
upload_exe_with_name: 'a10y-linux-x86_64'
- name: Upload Artifact
uses: actions/upload-artifact@v2
with:
name: a10y-linux-x86_64
path: .

pyinstaller-build-win:
runs-on: windows-latest
Expand All @@ -67,11 +62,6 @@ jobs:
spec: 'a10y.spec'
requirements: 'requirements.txt'
upload_exe_with_name: 'a10y-win.exe'
- name: Upload Artifact
uses: actions/upload-artifact@v2
with:
name: a10y-win.exe
path: .

pyinstaller-build-macos:
runs-on: macos-latest
Expand All @@ -83,21 +73,9 @@ jobs:
spec: 'a10y.spec'
requirements: 'requirements.txt'
upload_exe_with_name: 'a10y-macos.exe'

upload-artifacts:
runs-on: ubuntu-latest
steps:
- name: Upload Artifact
uses: actions/upload-artifact@v2
with:
name: a10y-macos.exe
path: .

# upload-artifacts:
# runs-on: ubuntu-latest
# steps:
# - name: upload linux artifact
# uses: actions/upload-release-asset@v1
# env:
# GITHUB_TOKEN: ${{ github.token }}
# with:
# upload_url: ${{ steps.create_release.outputs.upload_url }}
# asset_path: a10y-linux-x86_64
# asset_name: a10y-linux-x86_64.gz
# asset_content_type: application/gzip
2 changes: 2 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,9 @@ jobs:
run: |
tag=$(git describe --tags --abbrev=0)
echo "Creating release for tag $tag"
ls .
ls a10y-linux-x86_64
ls a10y-win.exe
ls a10y-macos.exe
ls dist
gh release create "$tag" a10y-linux-x86_64 a10y-win.exe a10y-macos.exe

0 comments on commit 27040ac

Please sign in to comment.