Skip to content

Commit

Permalink
タグリリーステスト
Browse files Browse the repository at this point in the history
  • Loading branch information
o-ga09 committed Nov 11, 2023
1 parent f1084ce commit e0f0127
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions .github/workflows/tag_release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,10 @@ jobs:
run: echo "Release"

- name: "tag Release"
if: ${{ startsWith(github.ref, 'refs/tags/') }} = false
run: |
echo "Release"
if [ "${{ startsWith(github.ref, 'refs/tags/v*') }}" = "true" ]; then
echo "【PROD】This is tag push. Continue with your steps."
elif [ "${{ startsWith(github.ref, 'refs/tags/stgv*') }}" = "true" ]; then
echo "【STG】This is tag push. Continue with your steps."
else
echo "【DEV】This is tag push. Continue with your steps."

2 comments on commit e0f0127

@github-actions
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Coverage report for ./frontend

St.
Category Percentage Covered / Total
🟢 Statements 100% 0/0
🟢 Branches 100% 0/0
🟢 Functions 100% 0/0
🟢 Lines 100% 0/0

Test suite run success

1 tests passing in 1 suite.

Report generated by 🧪jest coverage report action from e0f0127

@github-actions
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Coverage report for ./frontend

St.
Category Percentage Covered / Total
🟢 Statements 100% 0/0
🟢 Branches 100% 0/0
🟢 Functions 100% 0/0
🟢 Lines 100% 0/0

Test suite run success

1 tests passing in 1 suite.

Report generated by 🧪jest coverage report action from e0f0127

Please sign in to comment.