Added the rel-picker which can quickly goto related tables #25
Workflow file for this run
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: release | |
on: | |
push: | |
tags: | |
- 'v*' | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
services: | |
localstack: | |
image: localstack/localstack | |
ports: | |
- "4566:4566" | |
env: | |
SERVICES: ssm,dynamodb | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v2 | |
- name: Setup Go | |
uses: actions/setup-go@v3 | |
with: | |
go-version: 1.21 | |
- name: Configure | |
run: | | |
git config --global url."https://${{ secrets.GO_MODULES_TOKEN }}:[email protected]/lmika".insteadOf "https://github.com/lmika" | |
- name: Test | |
run: | | |
set -xue | |
go get ./... | |
go test -p 1 ./... | |
env: | |
GOPRIVATE: "github:com/lmika/*" | |
release-macos: | |
needs: build | |
runs-on: macos-12 | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v2 | |
- name: Setup Go | |
uses: actions/setup-go@v3 | |
with: | |
go-version: 1.18 | |
- name: Configure | |
run: | | |
git config --global url."https://${{ secrets.GO_MODULES_TOKEN }}:[email protected]/lmika".insteadOf "https://github.com/lmika" | |
- name: Setup Goreleaser | |
run: | | |
brew install goreleaser/tap/goreleaser | |
brew install goreleaser | |
- name: Release | |
if: startsWith(github.ref, 'refs/tags/') | |
run: | | |
goreleaser release -f macos.goreleaser.yml --skip-validate --rm-dist | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
HOMEBREW_GITHUB_TOKEN: ${{ secrets.HOMEBREW_GITHUB_TOKEN }} | |
release-linux: | |
needs: build | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v2 | |
- name: Setup Go | |
uses: actions/setup-go@v3 | |
with: | |
go-version: 1.18 | |
- name: Configure | |
run: | | |
git config --global url."https://${{ secrets.GO_MODULES_TOKEN }}:[email protected]/lmika".insteadOf "https://github.com/lmika" | |
- name: Release | |
uses: goreleaser/goreleaser-action@v1 | |
if: startsWith(github.ref, 'refs/tags/') | |
with: | |
version: latest | |
args: release -f linux.goreleaser.yml --skip-validate --rm-dist | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
HOMEBREW_GITHUB_TOKEN: ${{ secrets.HOMEBREW_GITHUB_TOKEN }} |