Merge branch 'main' of https://github.com/adobe/franklin-sidekick-lib… #33
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
name: Release (Sidekick Library) | |
on: | |
push: | |
branches: | |
- main | |
jobs: | |
semantic-release: | |
env: | |
NODE_AUTH_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
permissions: | |
packages: write | |
contents: write | |
issues: write | |
pull-requests: write | |
runs-on: ubuntu-latest | |
if: "!contains(github.event.head_commit.message, '[skip ci]')" | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Use Node.js 18.x | |
uses: actions/setup-node@v3 | |
with: | |
node-version: '18.x' | |
- run: npm install | |
- run: npm run lint | |
- run: npm test | |
env: | |
CI: true | |
- run: npm run build | |
- run: npm run semantic-release | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
NPM_TOKEN: ${{ secrets.ADOBE_BOT_NPM_TOKEN }} | |
DISCORD_WEBHOOK: ${{ secrets.HELIX_RELEASE_DISCORD_WEBHOOK }} | |
web-release: | |
runs-on: ubuntu-latest | |
if: "${{ !contains(github.event.head_commit.message, '[skip ci]') }}" | |
steps: | |
- name: Checkout source repo | |
uses: actions/checkout@v3 | |
- name: Use Node.js | |
uses: actions/setup-node@v3 | |
with: | |
node-version: '18' | |
- run: npm install | |
- run: npm run lint | |
- run: npm test | |
env: | |
CI: true | |
- run: npm run build | |
- name: Checkout target repo | |
uses: actions/checkout@v3 | |
with: | |
repository: adobe/helix-website | |
ref: main | |
path: _target | |
- name: Copy files from source to target repo | |
run: | | |
cp -r dist/* _target/tools/sidekick/library/ | |
- name: Create branch commit and pull request in target repo | |
uses: peter-evans/create-pull-request@v4 | |
with: | |
commit-message: "chore(sidekick library): new release candidate [skip ci]" | |
token: ${{ secrets.PAT }} | |
path: _target | |
base: main | |
branch: sidekick-library-rc | |
branch-suffix: short-commit-hash | |
delete-branch: true | |
title: Sidekick Library RC | |
body: This PR has been auto-generated from https://github.com/adobe/franklin-sidekick-library. |