Merge pull request #254 from ReadAlongs/main #12
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# This workflows will build, test and upload the package to npm when a release is created | |
name: Upload Package | |
on: | |
push: | |
branches: [release] | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
build: | |
runs-on: ubuntu-20.04 | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: fregante/setup-git-user@v1 | |
# Setup .npmrc file to publish to npm | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: 18 | |
registry-url: "https://registry.npmjs.org" | |
scope: "@readalongs" | |
- run: npm install | |
- name: Cypress run for web-component | |
uses: cypress-io/github-action@v6 | |
with: | |
install: false | |
start: | | |
npx nx serve web-component | |
npx nx serve-test-data web-component | |
wait-on: "http://localhost:3333/build/web-component.esm.js" | |
command: npx nx test:once web-component | |
- run: cd ./packages/web-component && npm version patch | |
- run: cd ./packages/ngx-web-component && npm version patch | |
- run: npx nx build web-component && npx nx bundle web-component && npx nx build ngx-web-component | |
- run: | | |
cd dist/packages/web-component && npm publish --access=public | |
env: | |
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }} | |
- run: | | |
cd dist/packages/ngx-web-component && npm publish --access=public | |
env: | |
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }} | |
- name: Determine tag | |
id: determine_tag | |
run: | | |
echo "TAG_VERSION=$(npm view @readalongs/web-component version)" >> $GITHUB_OUTPUT | |
- name: Bump version and push tag | |
id: tag_version | |
uses: mathieudutour/github-tag-action@v6.1 | |
with: | |
github_token: ${{ secrets.GITHUB_TOKEN }} | |
custom_tag: ${{ steps.determine_tag.outputs.TAG_VERSION }} | |
- name: Create a GitHub release | |
uses: ncipollo/release-action@v1 | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
with: | |
tag: ${{ steps.tag_version.outputs.new_tag }} | |
name: Release ${{ steps.tag_version.outputs.new_tag }} | |
body: ${{ steps.tag_version.outputs.changelog }} | |
- name: Submit a PR for the bumped version | |
uses: peter-evans/create-pull-request@v4 | |
with: | |
commit-message: "chore: commit version" | |
delete-branch: true | |
base: main | |
add-paths: | | |
package.json | |
package-lock.json | |
packages/*/package.json | |
packages/studio-web/src/assets/bundle.js | |
packages/studio-web/src/assets/fonts.b64.css |