-
Notifications
You must be signed in to change notification settings - Fork 1
35 lines (33 loc) · 1.03 KB
/
release.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
name: Create Release
on:
push:
branches: ['main']
jobs:
release:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Install Node.js
uses: actions/setup-node@v2
with:
node-version: 16.13
- name: Install
run: npm ci
env:
YALESITES_BUILD_TOKEN: ${{ secrets.YALESITES_BUILD_TOKEN }}
- name: Commit Compiled Component Library
uses: EndBug/add-and-commit@v7
with:
add: "node_modules/@yalesites-org/component-library-twig -f"
message: "build: commit compiled component library"
- name: Release
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
YALESITES_BUILD_TOKEN: ${{ secrets.YALESITES_BUILD_TOKEN }}
run: npm run semantic-release
- name: Remove Compiled Component Library
uses: EndBug/add-and-commit@v7
with:
remove: "--cached -r node_modules"
message: "build: removed compiled component library from git"