Skip to content

Commit

Permalink
fix: Don't unpack
Browse files Browse the repository at this point in the history
  • Loading branch information
GoetzGoerisch committed Jul 20, 2023
1 parent 5b7a0c8 commit d1f862d
Showing 1 changed file with 7 additions and 5 deletions.
12 changes: 7 additions & 5 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,20 +2,17 @@
name: Create Release

on:
workflow_dispatch:
pull_request:
branches: [main, development]
push:
# tags:
# - "v*.*.*"

jobs:
build:
release:
runs-on: ubuntu-22.04
if: github.ref != 'refs/heads/development'
steps:
- name: Checkout
uses: actions/checkout@v3

- name: Download artifact
id: download-artifact
uses: dawidd6/action-download-artifact@v2.27.0
Expand All @@ -24,7 +21,12 @@ jobs:
workflow: build.yml
workflow_conclusion: success
repo: ${{ github.repository }}
pr: ${{github.event.pull_request.number}}
if_no_artifact_found: fail
skip_unpack: true

- name: Test
run: cat *.zip/sha | grep $GITHUB_SHA

- name: Display structure of downloaded files
run: ls -R
Expand Down

0 comments on commit d1f862d

Please sign in to comment.