Skip to content

Commit

Permalink
feat: unify all release steps in a single pipeline (#113)
Browse files Browse the repository at this point in the history
  • Loading branch information
LucaLanziani committed Sep 26, 2023
1 parent 01837ed commit 93f4be9
Show file tree
Hide file tree
Showing 2 changed files with 29 additions and 56 deletions.
50 changes: 29 additions & 21 deletions .github/workflows/release-please.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,37 +3,45 @@ on:
branches:
- main

permissions:
contents: write
pull-requests: write

name: release-please

jobs:
release-please:
permissions:
pull-requests: write
contents: write
id-token: write
runs-on: ubuntu-latest
steps:
- uses: tibdex/[email protected]
id: get_installation_token
with:
app_id: ${{ secrets.RELEASE_PLEASE_APP_ID }}
installation_id: ${{ secrets.RELEASE_PLEASE_APP_INSTALLATION_ID }}
private_key: ${{ secrets.RELEASE_PLEASE_APP_PRIVATE_KEY }}

## Build a release based on the release-please-config.json file
- uses: google-github-actions/release-please-action@v3
id: release
with:
command: manifest
token: ${{ steps.get_installation_token.outputs.token }}

# The logic below handles the npm publication
- uses: actions/checkout@v2
## Build go binary and add it to the release
- uses: actions/checkout@v4
with:
fetch-depth: 0
if: ${{ steps.release.outputs.release_created }}

- uses: actions/setup-go@v4
with:
go-version: stable
if: ${{ steps.release.outputs.release_created }}

- name: Build go binaries
uses: goreleaser/goreleaser-action@v5
with:
distribution: goreleaser
version: latest
args: release --clean
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
if: ${{ steps.release.outputs.release_created }}

# The logic below handles the npm publication:
- uses: actions/checkout@v2
# these if statements ensure that a publication only occurs when
# a new release is created:
## Publish the release to npm
- uses: actions/checkout@v4
if: ${{ steps.release.outputs.release_created }}

- name: Get commit author
Expand All @@ -51,9 +59,9 @@ jobs:
node-version: "18.x"
registry-url: "https://registry.npmjs.org"
if: ${{ steps.release.outputs.release_created }}
# we want the good pipefail behaviour https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#jobsjob_idstepsshell
- shell: bash

- name: Run npm publish
shell: bash
run: |
cd npm
./publish.sh
Expand Down
35 changes: 0 additions & 35 deletions .github/workflows/release.yml

This file was deleted.

0 comments on commit 93f4be9

Please sign in to comment.