-
Notifications
You must be signed in to change notification settings - Fork 13
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 #805 from buildo/github-actions
Use GitHub Actions
- Loading branch information
Showing
15 changed files
with
112 additions
and
502 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
47 changes: 42 additions & 5 deletions
47
.github/workflows/cloudflare-pages.yml → .github/workflows/ci.yml
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,68 @@ | ||
name: Release | ||
|
||
on: | ||
push: | ||
tags: ["v*"] | ||
|
||
permissions: write-all | ||
|
||
jobs: | ||
checks: | ||
runs-on: ubuntu-latest | ||
name: Checks | ||
steps: | ||
- uses: actions/checkout@v4 | ||
with: | ||
fetch-depth: 0 | ||
- uses: actions/setup-node@v4 | ||
with: | ||
node-version: 20 | ||
- uses: pnpm/action-setup@v3 | ||
with: | ||
run_install: true | ||
- run: | | ||
cd packages/bento-design-system | ||
pnpm version --no-git-tag-version --new-version ${{ github.ref_name }} | ||
- name: Commit & Push changes | ||
uses: actions-js/push@master | ||
with: | ||
message: ${{ github.ref_name }} | ||
github_token: ${{ secrets.GITHUB_TOKEN }} | ||
|
||
- name: Publish to npm | ||
uses: JS-DevTools/npm-publish@v3 | ||
with: | ||
package: "packages/bento-design-system/package.json" | ||
token: ${{ secrets.NPM_TOKEN }} | ||
access: "public" | ||
provenance: true | ||
|
||
- name: Publish to Github | ||
uses: JS-DevTools/npm-publish@v3 | ||
with: | ||
package: "packages/bento-design-system/package.json" | ||
registry: "https://npm.pkg.github.com" | ||
token: ${{ secrets.GITHUB_TOKEN }} | ||
access: "public" | ||
provenance: true | ||
|
||
- uses: slackapi/slack-github-action@v1.24.0 | ||
if: ${{ job.status == 'success' }} | ||
env: | ||
SLACK_WEBHOOK_URL: ${{ secrets.SLACK_WEBHOOK_URL }} | ||
JOB_STATUS: ${{ job.status }} | ||
ATTACHMENT_COLOR: "good" | ||
with: | ||
channel-id: bento | ||
slack-message: ":tada: Version ${{ github.ref_name }} has been released!" | ||
|
||
- uses: slackapi/slack-github-action@v1.24.0 | ||
if: ${{ job.status == 'failure' }} | ||
env: | ||
SLACK_WEBHOOK_URL: ${{ secrets.SLACK_WEBHOOK_URL }} | ||
JOB_STATUS: ${{ job.status }} | ||
ATTACHMENT_COLOR: "danger" | ||
with: | ||
channel-id: bento | ||
slack-message: ":x: Version ${{ github.ref_name }} failed to release" |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.