Compare commits
2 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 9941d2fc6b | |||
| b00b7468a1 |
8
.github/workflows/build-lint-test.yaml
vendored
8
.github/workflows/build-lint-test.yaml
vendored
@@ -44,6 +44,14 @@ jobs:
|
|||||||
restore-keys: |
|
restore-keys: |
|
||||||
${{ runner.os }}-yarn-
|
${{ runner.os }}-yarn-
|
||||||
|
|
||||||
|
- name: 🗂️ Cache .cache folders
|
||||||
|
uses: actions/cache@v4
|
||||||
|
with:
|
||||||
|
path: packages/**/.cache
|
||||||
|
key: ${{ runner.os }}-cache
|
||||||
|
restore-keys: |
|
||||||
|
${{ runner.os }}-cache-
|
||||||
|
|
||||||
- name: 📥 Install Dependencies
|
- name: 📥 Install Dependencies
|
||||||
run: yarn install --immutable
|
run: yarn install --immutable
|
||||||
|
|
||||||
|
|||||||
7
.github/workflows/release.yaml
vendored
7
.github/workflows/release.yaml
vendored
@@ -15,6 +15,9 @@ on:
|
|||||||
default: 'lts/*'
|
default: 'lts/*'
|
||||||
type: string
|
type: string
|
||||||
secrets:
|
secrets:
|
||||||
|
RELEASER_ACCOUNT_TOKEN:
|
||||||
|
required: true
|
||||||
|
description: 'GitHub token for the releaser account'
|
||||||
GPG_KEY_ID:
|
GPG_KEY_ID:
|
||||||
required: true
|
required: true
|
||||||
description: 'GPG key ID'
|
description: 'GPG key ID'
|
||||||
@@ -32,7 +35,7 @@ jobs:
|
|||||||
uses: actions/checkout@v4
|
uses: actions/checkout@v4
|
||||||
with:
|
with:
|
||||||
fetch-depth: 0
|
fetch-depth: 0
|
||||||
token: ${{ secrets.GITHUB_TOKEN }}
|
token: ${{ secrets.RELEASER_ACCOUNT_TOKEN }}
|
||||||
|
|
||||||
- name: 🙂↔️ Import GPG key
|
- name: 🙂↔️ Import GPG key
|
||||||
run: |
|
run: |
|
||||||
@@ -92,5 +95,5 @@ jobs:
|
|||||||
- name: 🤖 Get Release
|
- name: 🤖 Get Release
|
||||||
run: yarn lerna version --yes
|
run: yarn lerna version --yes
|
||||||
env:
|
env:
|
||||||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
GITHUB_TOKEN: ${{ secrets.RELEASER_ACCOUNT_TOKEN }}
|
||||||
WIREIT_LOGGER: metrics
|
WIREIT_LOGGER: metrics
|
||||||
|
|||||||
Reference in New Issue
Block a user