release #16
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: | |
release | |
on: | |
release: | |
types: [published] | |
env: | |
PLUGIN_NAME: GTFS-GO-master | |
jobs: | |
release: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
with: | |
submodules: recursive | |
- name: pull submodules | |
run: | | |
git submodule update --init --recursive | |
- name: Create Plugin Directory | |
run: | | |
mkdir ${{env.PLUGIN_NAME}} | |
find . -type f | grep -ve './.git' \ | |
-ve '.github' \ | |
-ve './.vscode' \ | |
-ve '__pycache__/' \ | |
-ve 'doc_imgs/' \ | |
-ve './tests' \ | |
-ve './pyproject.toml' \ | |
-ve './poetry.toml' \ | |
-ve './poetry.lock' | xargs -I src cp --parents src ${{env.PLUGIN_NAME}} | |
- name: Create Archive | |
run: | | |
zip -r ${{env.PLUGIN_NAME}}.zip ./${{env.PLUGIN_NAME}} | |
- name: Upload release asset | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
run: | | |
gh release upload ${{ github.event.release.tag_name }} ${{env.PLUGIN_NAME}}.zip#${{env.PLUGIN_NAME}} |