Skip to content

Commit a9b000a

Browse files
committed
ci: 🎡 WIP package publishing in CI
1 parent 3c7f29d commit a9b000a

File tree

1 file changed

+6
-3
lines changed

1 file changed

+6
-3
lines changed

.github/workflows/tag-publish.yml

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,11 @@ jobs:
2727
# uses: ./.github/workflows/01-cypress.yml
2828
# needs: [build]
2929

30+
default:
31+
uses: ./.github/workflows/default.yml
32+
3033
publishnext:
34+
needs: [default]
3135
name: Publish experimental Packages
3236
# needs: [test, cypress]
3337
# Only publish if not on the main branch, the release tag starts with a "v"
@@ -58,12 +62,11 @@ jobs:
5862
SEMVER_VERSION=$(npx find-versions-cli ${{ github.event.release.tag_name }})
5963
echo "Semver experimental version $SEMVER_VERSION-$GITHUB_SHA_SHORT"
6064
61-
publishstable:
65+
publishlatest:
66+
needs: [default]
6267
name: Publish stable packages
6368
if: github.event.release.target_commitish == 'test-package-publishing' && github.event.release.prerelease == false
6469
runs-on: ubuntu-latest
65-
# env:
66-
# CHANGELOG_TEXT: "REPLACE_ME"
6770
steps:
6871
- name: ⬇️ Checkout repo
6972
uses: actions/checkout@v3

0 commit comments

Comments
 (0)