Skip to content

Commit

Permalink
Merge pull request #190 from shopware/next-19406/move-e2e-commands-in…
Browse files Browse the repository at this point in the history
…to-testsuite-package

NEXT-19406 - Move e2e commands into testsuite package
  • Loading branch information
jleifeld authored Jan 18, 2022
2 parents 7ffd6e1 + 562da32 commit 10cc3aa
Show file tree
Hide file tree
Showing 3 changed files with 436 additions and 3 deletions.
17 changes: 15 additions & 2 deletions .github/workflows/npm-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,20 @@ jobs:
- name: Install dependencies (if the cached directory was not found)
if: steps.node-cache.outputs.cache-hit != 'true'
run: npm ci
- uses: JS-DevTools/npm-publish@v1
- id: publish
uses: JS-DevTools/npm-publish@v1
with:
token: ${{ secrets.NPM_TOKEN }}
access: "public"
access: "public"
- name: Create Release
if: steps.publish.outputs.type != 'none'
id: create_release
uses: actions/create-release@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
tag_name: ${{ steps.publish.outputs.version }}
release_name: Release ${{ steps.publish.outputs.version }}
body: ${{ steps.publish.outputs.version }}
draft: false
prerelease: false
Loading

0 comments on commit 10cc3aa

Please sign in to comment.