0.0.14 #26
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: Github Release | |
on: | |
release: | |
types: | |
- created | |
branches: [master] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Install zip | |
run: sudo apt-get install zip | |
- name: Make create_cnapy_projects_zip.sh executable | |
run: chmod +x ./create_cnapy_projects_zip.sh | |
- name: Create archives | |
run: sudo ./create_cnapy_projects_zip.sh | |
- name: Upload assets | |
uses: softprops/[email protected] | |
with: | |
# Newline-delimited list of path globs for asset files to upload | |
files: ./*.zip | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |