v2.0.0 #6
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: 'Wrap release in folder' | |
on: | |
release: | |
types: [published] | |
jobs: | |
wrap-release: | |
runs-on: ubuntu-latest | |
steps: | |
# Check the code | |
- name: Checkout repo | |
uses: actions/[email protected] | |
# Create a folder and move the files inside | |
- name: Create folder and move files | |
run: | | |
mkdir skipstartupframes | |
mv * skipstartupframes || true | |
# Create a zip of the folder | |
- name: Create ZIP file of the folder | |
run: zip -r skipstartupframes.zip skipstartupframes | |
# Upload the zip file | |
- name: Upload the zip file into the release | |
uses: alexellis/[email protected] | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
with: | |
asset_paths: '["./skipstartupframes.zip"]' |