-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #42 from RyosukeDTomita/feature/releases-workflow
Feature/releases workflow
- Loading branch information
Showing
4 changed files
with
70 additions
and
0 deletions.
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
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,33 @@ | ||
name: create zip when main branch is pushed | ||
on: | ||
push: | ||
branches: | ||
- master | ||
paths: | ||
- "doc/**" | ||
|
||
defaults: | ||
run: | ||
shell: bash | ||
|
||
env: | ||
ZIP_NAME: "tool_doc.zip" | ||
|
||
jobs: | ||
create_zip: | ||
runs-on: ubuntu-latest | ||
permissions: | ||
contents: write | ||
|
||
steps: | ||
- name: clone application source code | ||
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7 | ||
|
||
- name: create zip | ||
run: zip -r ${{ env.ZIP_NAME }} doc | ||
|
||
- name: create zip | ||
uses: actions/upload-artifact@65462800fd760344b1a7b4382951275a0abb4808 # 4.3.3 | ||
with: | ||
path: ${{ env.ZIP_NAME }} | ||
name: ${{ env.ZIP_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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -9,6 +9,7 @@ on: | |
schedule: | ||
# 日曜日の午前0時に実行 | ||
- cron: '0 0 * * 0' | ||
|
||
defaults: | ||
run: | ||
shell: bash | ||
|
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,31 @@ | ||
name: Create a zip in Releases when a tag is created. | ||
on: | ||
release: | ||
types: [created] | ||
|
||
defaults: | ||
run: | ||
shell: bash | ||
|
||
env: | ||
ZIP_FILE: tool_doc.zip | ||
|
||
jobs: | ||
create_published: | ||
runs-on: ubuntu-latest | ||
permissions: | ||
contents: write | ||
|
||
steps: | ||
- name: clone application source code | ||
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7 | ||
|
||
- name: create zip | ||
run: zip -r ${{ env.ZIP_FILE }} doc | ||
|
||
- name: upload Releases | ||
uses: shogo82148/actions-upload-release-asset@8f032eff0255912cc9c8455797fd6d72f25c7ab7 # v1.7.5 | ||
with: | ||
upload_url: ${{ github.event.release.upload_url }} | ||
asset_path: ${{ env.ZIP_FILE }} | ||
asset_name: ${{ env.ZIP_FILE }} |