-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: unify all release steps in a single pipeline (#113)
- Loading branch information
1 parent
01837ed
commit 93f4be9
Showing
2 changed files
with
29 additions
and
56 deletions.
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 |
---|---|---|
|
@@ -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 | ||
|
@@ -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 | ||
|
This file was deleted.
Oops, something went wrong.