Skip to content
This repository has been archived by the owner on Jan 1, 2025. It is now read-only.

Commit

Permalink
fix: workflows fix
Browse files Browse the repository at this point in the history
  • Loading branch information
elribonazo committed Jan 4, 2024
1 parent 759b851 commit bd9a297
Show file tree
Hide file tree
Showing 2 changed files with 77 additions and 1 deletion.
77 changes: 77 additions & 0 deletions .github/workflows/release-candidate.yml
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"
1 change: 0 additions & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@ on:
push:
branches:
- master
- rc
workflow_dispatch:

permissions:
Expand Down

0 comments on commit bd9a297

Please sign in to comment.