Skip to content

chore(release): publish 1.11.9 #15

chore(release): publish 1.11.9

chore(release): publish 1.11.9 #15

Workflow file for this run

name: Release
on:
push:
branches:
- master
jobs:
build:
if:
github.actor != 'carbon-bot'
&& !startsWith(github.event.head_commit.message, 'skip-release')
name: Create release - Node.js v18.16.0
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v1
- name: Use Node.js 18.16.0
uses: actions/setup-node@v2
with:
node-version: '18.16.0'
registry-url: 'https://registry.npmjs.org'
- name: Install dependencies
run: yarn install --immutable --check-cache
- name: Deploy to Github & NPM 🚀
run: yarn deploy
env:
GH_TOKEN: ${{ secrets.GH_TOKEN }}
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
- name: Deploy to gh-pages 🚀
uses: JamesIves/github-pages-deploy-action@3.7.1
with:
GITHUB_TOKEN: ${{ secrets.GH_TOKEN }}
BRANCH: gh-pages # The branch the action should deploy to.
FOLDER: pages # The folder the action should deploy.
CLEAN: true # Automatically remove deleted files from the deploy branch