Skip to content

Commit

Permalink
Rename release folder
Browse files Browse the repository at this point in the history
Otherwise when you unzip it's called 'release' ew
  • Loading branch information
zoetrope69 committed Aug 15, 2020
1 parent 34a7a89 commit 4f70002
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/release_zip.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,13 +10,13 @@ jobs:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- uses: actions/checkout@v2

- name: Copy .package files from src/ into temporary release/ folder
- name: Copy .package files from src/ into temporary greggs-stuff-pack/ folder
run: |
mkdir release
find src -name '*.package' -exec cp -prv '{}' release ';'
mkdir greggs-stuff-pack
find src -name '*.package' -exec cp -prv '{}' greggs-stuff-pack ';'
- name: Zip release/ into greggs-stuff-pack.zip
run: zip greggs-stuff-pack release/*.package
- name: Zip greggs-stuff-pack/ into greggs-stuff-pack.zip
run: zip greggs-stuff-pack greggs-stuff-pack/*.package

- name: Create release
id: create_release
Expand Down

0 comments on commit 4f70002

Please sign in to comment.