Skip to content

Commit

Permalink
fix artifact paths
Browse files Browse the repository at this point in the history
  • Loading branch information
James-Mart committed Aug 18, 2023
1 parent 227d176 commit dc0e2c1
Showing 1 changed file with 4 additions and 15 deletions.
19 changes: 4 additions & 15 deletions .github/workflows/on-tag.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,14 +7,6 @@ on:
- 'v*.*.*-*'

jobs:
debug-print:
name: <Debug> Branch/tag - ${{github.ref}}
runs-on: ubuntu-latest
steps:
- name: step1
id: step1
run: |
echo "no-op"

build-psibase:
name: Run Builds
Expand All @@ -37,7 +29,7 @@ jobs:
fi
create-psibase-release:
name: Create Psibase Release
name: Release - ${{github.ref_name}}
runs-on: ubuntu-latest
needs:
- build-psibase
Expand All @@ -52,17 +44,14 @@ jobs:
- name: Download build artifacts
uses: actions/download-artifact@v3

- name: <Debug> Display structure of downloaded files
run: ls -R

- name: Create new Github Release
id: create_release
uses: softprops/action-gh-release@v1
with:
files: |
psidk-ubuntu-2004.tar.gz
psidk-ubuntu-2204.tar.gz
psidk-book.tar.gz
psidk-ubuntu-2004/psidk-ubuntu-2004.tar.gz
psidk-ubuntu-2204/psidk-ubuntu-2204.tar.gz
psidk-book/psidk-book.tar.gz
draft: true
prerelease: ${{needs.prerelease-check.outputs.prerelease}}
release_name: ${{ github.ref_name }}
Expand Down

0 comments on commit dc0e2c1

Please sign in to comment.