Skip to content

Commit

Permalink
test
Browse files Browse the repository at this point in the history
  • Loading branch information
RyosukeDTomita committed Jul 2, 2024
1 parent 8770f7d commit 9fef892
Show file tree
Hide file tree
Showing 3 changed files with 37 additions and 0 deletions.
5 changes: 5 additions & 0 deletions .github/workflows/actions-linter.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,11 @@ on:
pull_request:
paths:
- .github/workflows/*.yaml

defaults:
run:
shell: bash

jobs:
run-ghalint:
runs-on: ubuntu-latest
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/react-dependency-check.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ on:
schedule:
# 日曜日の午前0時に実行
- cron: '0 0 * * 0'

defaults:
run:
shell: bash
Expand Down
31 changes: 31 additions & 0 deletions .github/workflows/release_document.yaml
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 }}

0 comments on commit 9fef892

Please sign in to comment.