Skip to content

Merge pull request #45 from wso2/aw/2 #1186

Merge pull request #45 from wso2/aw/2

Merge pull request #45 from wso2/aw/2 #1186

Workflow file for this run

# Copyright (c) 2021, WSO2 Inc. (http://www.wso2.org) All Rights Reserved.
#
# WSO2 Inc. licenses this file to you under the Apache License,
# Version 2.0 (the "License"); you may not use this file except
# in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing,
# software distributed under the License is distributed on an
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
# KIND, either express or implied. See the License for the
# specific language governing permissions and limitations
# under the License.
# This workflow will build PRs submitted to the main branch.
name: Publish
on:
push:
branches:
- main
paths:
- "src/**"
- "types/**"
- "api.js"
- "ui.js"
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [12.x]
steps:
- name: Checkout
uses: actions/[email protected]
with:
token: ${{secrets.IAM_GITHUB_BOT_TOKEN}}
if: github.repository == 'wso2/identity-cypress-test-base'
- name: Checkout
uses: actions/[email protected]
if: github.repository != 'wso2/identity-cypress-test-base'
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/[email protected]
with:
node-version: ${{ matrix.node-version }}
registry-url: https://registry.npmjs.org/
- name: Build
run: |
npm ci
npm run build --if-present
- name: Bump version
run: |
git config --global user.email "[email protected]"
git config --global user.name "iam-github-bot"
npm version patch -m "[WSO2 Release] [GitHub Actions] [Release %s] prepare release %s"
git push --follow-tags
if: github.repository == 'wso2/identity-cypress-test-base'
- name: Publish to NPM
env:
NODE_AUTH_TOKEN: ${{secrets.NPM_TOKEN}}
run: |
echo "//registry.npmjs.org/:_authToken=${{ secrets.NPM_TOKEN }}" > ~/.npmrc
npm publish --access public