GitHub Action for GoReleaser
Go to file
dependabot-preview[bot] 517240b133 Bump @types/node from 12.12.12 to 12.12.14 (#43)
Bumps [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node) from 12.12.12 to 12.12.14.
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases)
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/node)

Signed-off-by: dependabot-preview[bot] <support@dependabot.com>
2019-11-26 09:14:45 +01:00
.github No need uncommitted workflow 2019-11-14 23:37:32 +01:00
__tests__ Add tests 2019-09-22 07:17:07 +02:00
lib Fix tsc gen 2019-11-14 23:06:12 +01:00
node_modules Update node_modules 2019-11-14 23:36:55 +01:00
src Update prettier 2019-11-12 00:05:29 +01:00
.editorconfig Initial commit 2019-09-20 22:23:46 +02:00
.gitattributes Initial commit 2019-09-20 22:23:46 +02:00
.gitignore Add tests 2019-09-22 07:17:07 +02:00
.prettierrc.json Update prettier 2019-11-12 00:05:29 +01:00
LICENSE Initial commit 2019-09-20 22:23:46 +02:00
README.md Remove beta note 2019-11-14 23:10:05 +01:00
action.yml Artifact signing (#2) 2019-09-26 14:17:18 +02:00
go.mod Move repository to GoReleaser org (#3) 2019-09-28 20:50:20 +02:00
jest.config.js Add tests 2019-09-22 07:17:07 +02:00
main.go Initial commit 2019-09-20 22:23:46 +02:00
package-lock.json Bump @types/node from 12.12.12 to 12.12.14 (#43) 2019-11-26 09:14:45 +01:00
package.json Bump @types/node from 12.12.12 to 12.12.14 (#43) 2019-11-26 09:14:45 +01:00
tsconfig.json Add tests 2019-09-22 07:17:07 +02:00

README.md

GoReleaser Logo

GoReleaser Action

GitHub Action for GoReleaser

GitHub release GitHub marketplace Release workflow Test workflow Become a sponsor


Usage

Below is a simple snippet to use this action. A live example is also available for this repository.

name: goreleaser

on:
  pull_request:
  push:

jobs:
  goreleaser:
    runs-on: ubuntu-latest
    steps:
      -
        name: Checkout
        uses: actions/checkout@master
      -
        name: Set up Go
        uses: actions/setup-go@master
      -
        name: Run GoReleaser
        uses: goreleaser/goreleaser-action@v1
        with:
          version: latest
          args: release --rm-dist
          key: ${{ secrets.YOUR_PRIVATE_KEY }}
        env:
          GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

Customizing

Inputs

Following inputs can be used as step.with keys

Name Type Default Description
version String latest GoReleaser version. Example: v0.117.0
args String Arguments to pass to GoReleaser
key String Private key to import

Signing

If signing is enabled in your GoReleaser configuration, populate the key input with your private key and reference the key in your signing configuration, e.g.

signs:
  - artifacts: checksum
    args: ["--batch", "-u", "<key id, fingerprint, email, ...>", "--output", "${signature}", "--detach-sign", "${artifact}"]

This feature is currently only compatible when using the default gpg command and a private key without a passphrase.

License

MIT. See LICENSE for more details.