Skip to content

Commit

Permalink
ci: remove publish step
Browse files Browse the repository at this point in the history
  • Loading branch information
jojobii-arks committed Apr 14, 2023
1 parent 53afadd commit d1a7a37
Showing 1 changed file with 1 addition and 21 deletions.
22 changes: 1 addition & 21 deletions .github/workflows/build-app.yml
Original file line number Diff line number Diff line change
Expand Up @@ -54,24 +54,4 @@ jobs:
- uses: actions/upload-artifact@v3
with:
name: artifacts
path: "${{ join(fromJSON(steps.tauri_build.outputs.artifacts), '\n') }}"

publish:
needs: build-binaries
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
# Download the previously uploaded artifacts
- uses: actions/download-artifact@v3
id: download
with:
name: artifacts
path: artifacts
# And create a release with the artifacts attached
- name: 'create release'
uses: softprops/action-gh-release@master
env:
GITHUB_TOKEN: '${{ secrets.GITHUB_TOKEN }}'
with:
draft: true
files: ./artifacts/**/*
path: "${{ join(fromJSON(steps.tauri_build.outputs.artifacts), '\n') }}"

0 comments on commit d1a7a37

Please sign in to comment.