-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
47 additions
and
1 deletion.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,46 @@ | ||
name: release | ||
on: | ||
release: | ||
types: [published] | ||
|
||
env: | ||
PLUGIN_NAME: qgis-jaxa-earth-plugin-master | ||
jobs: | ||
release: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v2 | ||
with: | ||
submodules: recursive | ||
# 内容を書き換えるファイルの名前を一時的に変更 | ||
- name: rename some files to rewrite | ||
run: | | ||
cp ./metadata.txt ./metadata.old.txt | ||
# metadata.txtにバージョン情報を書き込み | ||
- name: metadata | ||
run: | | ||
sed -e "s/version=0.0.0/version=${{ github.event.release.tag_name }}/g" ./metadata.old.txt > ./metadata.txt | ||
rm ./metadata.old.txt | ||
- 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}} |
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