From 64ea5960b7991c00287a6037c0ca14a3d5609a1e Mon Sep 17 00:00:00 2001 From: Jon McClure Date: Sun, 12 Feb 2023 19:43:58 +0000 Subject: [PATCH] release workflow --- .github/workflows/release.yaml | 63 ++++++++++++++++++++++++++++++++++ 1 file changed, 63 insertions(+) create mode 100644 .github/workflows/release.yaml diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml new file mode 100644 index 00000000..a19bdd19 --- /dev/null +++ b/.github/workflows/release.yaml @@ -0,0 +1,63 @@ +name: Release + +on: + push: + pull_request: + workflow_dispatch: + +jobs: + release: + name: Release + runs-on: ubuntu-latest + permissions: + contents: write + # Restricts release to: + # 1) pushes of release tags + # 2) the default branch + # 3) the base repository + if: | + github.event_name == 'push' && startsWith(github.ref, 'refs/tags') && + endsWith(github.event.base_ref, github.event.repository.default_branch) && + github.repository == 'reuters-graphics/graphics-components' + steps: + - id: checkout + name: Checkout repository + uses: actions/checkout@v3 + with: + fetch-depth: 0 + ref: ${{ github.event.repository.default_branch }} + + - id: setup-node + name: Setup Node.JS + uses: actions/setup-node@v3 + with: + node-version: 16 + registry-url: https://registry.npmjs.org + scope: '@reuters-graphics' + + - id: install-deps + name: Install dependencies + run: yarn install --frozen-lockfile + + - id: build-docs + name: Build docs + run: npm run build:docs + + - id: version + name: Version + run: npm version ${{ github.ref_name }} --no-git-tag-version + + - id: publish + name: Publish + run: npm publish --access public + env: + NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }} + + - id: commit + name: Commit + run: | + git config --global user.name github-actions + git config --global user.email github-actions@github.com + git add . + git commit -m "published ${{ github.ref_name }}" + git push \ No newline at end of file