Skip to content

Commit

Permalink
ci: test on beta
Browse files Browse the repository at this point in the history
  • Loading branch information
msclock committed Mar 21, 2024
1 parent fcaad1b commit 0193850
Showing 1 changed file with 12 additions and 2 deletions.
14 changes: 12 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -114,6 +114,8 @@ jobs:
permissions:
contents: write # to be able to publish a GitHub release
id-token: write # to enable use of OIDC for npm provenance
issues: write
pull-requests: write
# needs: [pass]

steps:
Expand All @@ -123,15 +125,23 @@ jobs:
ref: ${{ github.head_ref }}
token: ${{ github.token }}

- name: List local git tags
run: git tag -l

- name: Pull remote tags
run: git fetch --tags

- run: git tag -l

- uses: actions/setup-node@v4
with:
node-version: lts/*

- name: Install dependencies
run: |
npm install -g semantic-release@^22.0.5 @semantic-release/exec @semantic-release/github conventional-changelog-conventionalcommits
npm install -g semantic-release@22 @semantic-release/exec @semantic-release/github conventional-changelog-conventionalcommits
- name: Release
run: npx semantic-release
run: npx semantic-release --no-ci --debug
env:
GITHUB_TOKEN: ${{ github.token }}

0 comments on commit 0193850

Please sign in to comment.