-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #227 from api3dao/main
`main` to `production` sync
- Loading branch information
Showing
10 changed files
with
162 additions
and
58 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,63 @@ | ||
# https://github.com/changesets/action | ||
name: Auto-release | ||
|
||
on: | ||
push: | ||
branches: | ||
- main | ||
|
||
env: | ||
NPM_TOKEN: ${{ secrets.NPM_TOKEN }} | ||
|
||
jobs: | ||
release: | ||
name: Release | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
with: | ||
# This makes Actions fetch all Git history so that Changesets can generate changelogs with the correct commits | ||
fetch-depth: 0 | ||
|
||
- name: Setup pnpm | ||
uses: pnpm/action-setup@v2 | ||
with: | ||
version: 8.12.1 | ||
- uses: actions/setup-node@v4 | ||
with: | ||
node-version: "18.x" | ||
cache: 'pnpm' | ||
- name: Install dependencies | ||
run: pnpm install --frozen-lockfile | ||
|
||
- name: Build package | ||
run: pnpm run build | ||
|
||
- name: Check file existence | ||
id: check_files | ||
uses: andstor/file-existence-action@v3 | ||
with: | ||
files: "./.changeset/changeset.md" | ||
|
||
- name: Changeset version | ||
if: steps.check_files.outputs.files_exists == 'true' | ||
run: pnpm changeset version | ||
|
||
- name: Commit changes | ||
uses: stefanzweifel/git-auto-commit-action@v5 | ||
id: auto-commit-action | ||
if: steps.check_files.outputs.files_exists == 'true' | ||
with: | ||
commit_message: Update version | ||
commit_options: '--no-verify --signoff' | ||
|
||
- name: Create Release | ||
if: steps.check_files.outputs.files_exists == 'true' | ||
id: changesets | ||
uses: changesets/action@v1 | ||
with: | ||
publish: pnpm run release | ||
commit: "ci: release logos package" | ||
title: "ci: release logos package" | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |
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
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
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
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
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
const fs = require('fs/promises'); | ||
|
||
async function getChangeset() { | ||
return await fs.readdir('./.changeset'); | ||
} | ||
|
||
async function createChangeset() { | ||
const changeset = `--- | ||
"@phase21/logos": patch | ||
--- | ||
# What's Changed | ||
Release created by the release script. | ||
Logos updated. | ||
`; | ||
await fs.writeFile('./.changeset/changeset.md', changeset); | ||
console.log('✨ Created changeset file.'); | ||
} | ||
|
||
|
||
async function checkChangeset() { | ||
const changeset = await getChangeset(); | ||
if (changeset.some(file => file.endsWith('.md'))) { | ||
console.log('There is already a .md file in the .changeset directory.'); | ||
} else { | ||
await createChangeset(); | ||
} | ||
} | ||
|
||
async function main() { | ||
console.log('🏗 Checking changeset files...'); | ||
Promise.all([checkChangeset()]).then(() => console.log('✅ Finished checking changeset files.')); | ||
} | ||
|
||
main(); |
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