This repository has been archived by the owner on Jan 1, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
759b851
commit bd9a297
Showing
2 changed files
with
77 additions
and
1 deletion.
There are no files selected for viewing
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,77 @@ | ||
name: Release Pluto encrypted | ||
|
||
on: | ||
push: | ||
branches: | ||
- rc | ||
workflow_dispatch: | ||
|
||
permissions: | ||
contents: read | ||
pages: write | ||
id-token: write | ||
|
||
jobs: | ||
release: | ||
|
||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout Code | ||
uses: actions/checkout@v4 | ||
with: | ||
submodules: 'true' | ||
token: ${{ secrets.PLUTO_GITHUB }} | ||
|
||
- name: Setup Node.js | ||
uses: actions/setup-node@v3 | ||
with: | ||
node-version: "lts/*" | ||
registry-url: 'https://registry.npmjs.org/' | ||
|
||
- uses: crazy-max/ghaction-import-gpg@v5 | ||
id: import_gpg | ||
with: | ||
gpg_private_key: ${{ secrets.GPG_PRIVATE_KEY }} | ||
passphrase: ${{ secrets.GPG_PASSPHRASE }} | ||
git_user_signingkey: true | ||
git_commit_gpgsign: true | ||
|
||
- name: Release | ||
env: | ||
GH_TOKEN: ${{ secrets.PLUTO_GITHUB }} | ||
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }} | ||
GIT_AUTHOR_NAME: "${{ secrets.GIT_AUTHOR_NAME }}" | ||
GIT_AUTHOR_EMAIL: ${{ secrets.GIT_AUTHOR_EMAIL }} | ||
GIT_COMMITTER_NAME: ${{ secrets.GIT_COMMITTER_NAME }} | ||
GIT_COMMITTER_EMAIL: ${{ secrets.GIT_COMMITTER_EMAIL }} | ||
GITHUB_AUTHOR_NAME: ${{ secrets.GIT_AUTHOR_NAME }} | ||
GITHUB_AUTHOR_EMAIL: ${{ secrets.GIT_AUTHOR_EMAIL }} | ||
GITHUB_COMMITER_NAME: ${{ secrets.GIT_COMMITTER_NAME }} | ||
GITHUB_COMMITER_EMAIL: ${{ secrets.GIT_COMMITTER_EMAIL }} | ||
CI: true | ||
run: | | ||
npm install | ||
npm run build | ||
npm run release | ||
npm run docs | ||
chmod +x coverage.sh | ||
./coverage.sh | ||
- uses: stefanzweifel/git-auto-commit-action@v5 | ||
env: | ||
GH_TOKEN: ${{ secrets.PLUTO_GITHUB }} | ||
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }} | ||
GIT_AUTHOR_NAME: ${{ secrets.GIT_AUTHOR_NAME }} | ||
GIT_AUTHOR_EMAIL: ${{ secrets.GIT_AUTHOR_EMAIL }} | ||
GIT_COMMITTER_NAME: ${{ secrets.GIT_COMMITTER_NAME }} | ||
GIT_COMMITTER_EMAIL: ${{ secrets.GIT_COMMITTER_EMAIL }} | ||
GITHUB_AUTHOR_NAME: ${{ secrets.GIT_AUTHOR_NAME }} | ||
GITHUB_AUTHOR_EMAIL: ${{ secrets.GIT_AUTHOR_EMAIL }} | ||
GITHUB_COMMITER_NAME: ${{ secrets.GIT_COMMITTER_NAME }} | ||
GITHUB_COMMITER_EMAIL: ${{ secrets.GIT_COMMITTER_EMAIL }} | ||
with: | ||
push_options: '--force' | ||
commit_message: "chore(docs): Rebuild docs + coverage [skip ci]" | ||
commit_author: "Javier Ribó <elribonazo@gmail.com>" | ||
commit_user_name: "Javier Ribó" | ||
commit_user_email: "elribonazo@gmail.com" |
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 |
---|---|---|
|
@@ -4,7 +4,6 @@ on: | |
push: | ||
branches: | ||
- master | ||
- rc | ||
workflow_dispatch: | ||
|
||
permissions: | ||
|