Skip to content

Commit

Permalink
整理: workflow の step name 記法を統一 (#1284)
Browse files Browse the repository at this point in the history
refactor: Actions の記法を統一
  • Loading branch information
tarepan authored May 23, 2024
1 parent 899870e commit 94ab6c2
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build-engine-container.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:
outputs:
version_or_latest: ${{ steps.vars.outputs.version_or_latest }}
steps:
- name: declare variables
- name: <Setup> Declare variables
id: vars
run: |
: # releaseタグ名か、workflow_dispatchでのバージョン名か、latestが入る
Expand Down
6 changes: 4 additions & 2 deletions .github/workflows/build-engine-package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -653,8 +653,10 @@ jobs:
needs: [config, build-and-upload]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Change tag to this commit for refreshing the release # c.f. voicevox_engine#854
- name: <Setup> Check out the repository
uses: actions/checkout@v4

- name: <Deploy> Change tag to this commit for refreshing the release # c.f. voicevox_engine#854
run: |
git tag -f ${{ needs.config.outputs.version }}
git push -f --tag
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -66,13 +66,13 @@ jobs:
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

- name: Check licenses
- name: <Test> Check licenses
shell: bash
run: |
OUTPUT_LICENSE_JSON_PATH=/dev/null \
bash build_util/create_venv_and_generate_licenses.bash
- name: Test names by checking typo
- name: <Test> Test names by checking typo
if: ${{ startsWith(matrix.os, 'ubuntu-') }}
uses: crate-ci/[email protected]

Expand Down

0 comments on commit 94ab6c2

Please sign in to comment.