Skip to content

Commit

Permalink
fix: reset e2e (#602)
Browse files Browse the repository at this point in the history
  • Loading branch information
derschnee68 authored Nov 29, 2023
1 parent 8b8f93d commit 6a37d45
Showing 1 changed file with 7 additions and 6 deletions.
13 changes: 7 additions & 6 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -83,6 +83,12 @@ jobs:
# run: make get-test-data-from-release
# - name: Prepare test data
# run: make prepare-test-data
- name: Build lib
run: make build
- name: Prepare test environment
run: make prepare-test-ci
- name: Run e2e tests
run: make e2e-tests

release-please:
name: Prepare next release
Expand Down Expand Up @@ -123,12 +129,7 @@ jobs:
run: npm run build
- if: "github.event.release.prerelease"
name: Publish pre-release to GitHub packages
run: |
echo "//npm.pkg.github.com/:_authToken=${{secrets.GITHUB_TOKEN}}" >> .npmrc
npm publish ${{env.DistDirectory}} --tag rc --access public
env:
NODE_AUTH_TOKEN: ${{secrets.NPM_TOKEN_DASCHBOT}}
run: npm publish ${{env.DistDirectory}} --registry=https://npm.pkg.github.com/ --_authToken=${{secrets.GITHUB_TOKEN}} --tag rc --access public
- if: "!github.event.release.prerelease"
name: Publish release to GitHub packages
run: npm publish ${{env.DistDirectory}} --registry=https://npm.pkg.github.com/ --_authToken=${{secrets.GITHUB_TOKEN}} --access public
Expand Down

0 comments on commit 6a37d45

Please sign in to comment.