Skip to content

Commit

Permalink
ci: publish workflow
Browse files Browse the repository at this point in the history
This makes the release process consistent with our other repos
  • Loading branch information
agaffney committed Aug 26, 2023
1 parent 691e7ec commit 4ecb6de
Show file tree
Hide file tree
Showing 2 changed files with 40 additions and 17 deletions.
17 changes: 0 additions & 17 deletions .github/workflows/publish-docs.yaml

This file was deleted.

40 changes: 40 additions & 0 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
name: publish

on:
push:
tags:
- 'v*.*.*'

concurrency: ${{ github.ref }}

jobs:
create-release:
runs-on: ubuntu-latest
outputs:
RELEASE_ID: ${{ steps.create-release.outputs.result }}
steps:
- run: "echo \"RELEASE_TAG=${GITHUB_REF#refs/tags/}\" >> $GITHUB_ENV"
- uses: actions/github-script@v6
id: create-release
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
result-encoding: string
script: |
try {
const response = await github.rest.repos.createRelease({
generate_release_notes: true,
name: process.env.RELEASE_TAG,
owner: context.repo.owner,
prerelease: false,
repo: context.repo.repo,
tag_name: process.env.RELEASE_TAG,
});
return response.data.id;
} catch (error) {
core.setFailed(error.message);
}
# This updates the documentation on pkg.go.dev and the latest version available via the Go module proxy
- name: Pull new module version
uses: andrewslotin/go-proxy-pull-action@v1.0.3

0 comments on commit 4ecb6de

Please sign in to comment.