feat: allows required plugins to be set in local CLI config file. #463
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
name: CI | |
on: [push] | |
jobs: | |
build: | |
runs-on: ubuntu-latest-l | |
permissions: | |
contents: read | |
packages: write | |
timeout-minutes: 15 | |
steps: | |
- uses: actions/checkout@v2 | |
with: | |
fetch-depth: 0 | |
- name: Setup Go | |
uses: actions/setup-go@v2 | |
with: | |
go-version: '1.19.0' | |
- name: Setup Java | |
uses: actions/setup-java@v2 | |
with: | |
java-version: '11.0.20' | |
distribution: 'temurin' | |
- name: Install dependencies | |
run: go mod download | |
- name: Test | |
run: go test -v ./... | |
- name: Build | |
run: go build | |
- name: Dry run | |
uses: goreleaser/goreleaser-action@v2 | |
if: ${{ !startsWith(github.ref, 'refs/tags/') }} | |
with: | |
version: latest | |
args: release --snapshot | |
- name: Release | |
uses: goreleaser/goreleaser-action@v2 | |
if: startsWith(github.ref, 'refs/tags/') | |
with: | |
version: latest | |
args: release --rm-dist | |
env: | |
GITHUB_TOKEN: ${{ secrets.GH_RELEASE_TOKEN }} |