chore(release): publish #237
This file contains hidden or 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
| name: Release | |
| on: | |
| push: | |
| branches: [main] | |
| permissions: | |
| id-token: write | |
| jobs: | |
| Build: | |
| if: "${{ contains(github.event.head_commit.message, 'chore(release): publish') == false }}" | |
| runs-on: ubuntu-latest | |
| env: | |
| FORCE_PUBLISH: ${{ contains(github.event.head_commit.message, '[force-publish]') }} | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v4 | |
| with: | |
| token: ${{ secrets.CI_PAT_TOKEN }} | |
| fetch-depth: 0 | |
| - uses: actions/setup-node@v4 | |
| with: | |
| node-version: 20.x | |
| registry-url: "https://registry.npmjs.org" | |
| - name: Upgrade npm (trusted publishing requirement) | |
| run: npm install -g npm@^11.5.1 | |
| - name: Enable Corepack (Yarn) | |
| run: corepack enable | |
| - name: Setup git config | |
| run: | | |
| git config --global user.name "standardci" | |
| git config --global user.email "ci@standardnotes.com" | |
| - name: Import GPG key | |
| uses: crazy-max/ghaction-import-gpg@v4 | |
| with: | |
| gpg_private_key: ${{ secrets.CI_GPG_PRIVATE_KEY }} | |
| passphrase: ${{ secrets.CI_GPG_PASSPHRASE }} | |
| git_user_signingkey: true | |
| git_commit_gpgsign: true | |
| - name: Install Dependencies | |
| run: yarn install | |
| - name: Build plugins | |
| run: yarn build | |
| - name: Package Plugins | |
| run: yarn workspace @standardnotes/community-cdn compile | |
| - name: Release | |
| if: ${{ env.FORCE_PUBLISH != 'true' }} | |
| run: yarn run release | |
| - name: Force Release | |
| if: ${{ env.FORCE_PUBLISH == 'true' }} | |
| run: yarn run release:force | |
| - name: Publish | |
| run: yarn run publish |