Skip to content

Commit ef30ea6

Browse files
committed
feat: Test release flow
1 parent 02f1e30 commit ef30ea6

File tree

1 file changed

+25
-0
lines changed

1 file changed

+25
-0
lines changed

.github/workflows/ci.yml

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -141,3 +141,28 @@ jobs:
141141
with:
142142
image: ${{ github.repository }}:${{ env.GITHUB_SHA_SHORT }}
143143
run: mage test:run
144+
145+
release:
146+
name: Release
147+
if: github.ref == 'refs/heads/DEVPLAT-2566-migrate-to-github-action'
148+
needs: [build, check, test]
149+
runs-on: ubuntu-latest
150+
steps:
151+
- name: Checkout
152+
uses: actions/checkout@v4
153+
with:
154+
persist-credentials: false
155+
156+
- name: Semantic Release
157+
uses: cycjimmy/semantic-release-action@v4
158+
with:
159+
semantic_version: 24.0.0
160+
extra_plugins: |
161+
@semantic-release/[email protected]
162+
@semantic-release/[email protected]
163+
@semantic-release/[email protected]
164+
@semantic-release/[email protected]
165+
@semantic-release/[email protected]
166+
@semantic-release/[email protected]
167+
env:
168+
GITHUB_TOKEN: ${{ secrets.SCRIBD_GITHUB_GENERIC_TOKEN }}

0 commit comments

Comments
 (0)