Skip to content

docs: add supported language and cloud links. (#498) #81

docs: add supported language and cloud links. (#498)

docs: add supported language and cloud links. (#498) #81

Workflow file for this run

name: publish-azure
on:
push:
# run only against tags
tags:
- '*'
permissions:
contents: write
# packages: write
# issues: write
jobs:
goreleaser:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
- run: git fetch --force --tags
- name: Setup Go
uses: actions/setup-go@v2
with:
go-version: 1.19
- name: Setup Golang caches
uses: actions/cache@v3
with:
path: |
~/.cache/go-build
~/go/pkg/mod
key: ${{ runner.os }}-golang-${{ hashFiles('**/go.sum', '**/work.sum', '**/.goreleaser.yaml') }}
restore-keys: |
${{ runner.os }}-golang-
- uses: goreleaser/goreleaser-action@v4
with:
# either 'goreleaser' (default) or 'goreleaser-pro':
distribution: goreleaser
version: latest
args: release --clean
workdir: cloud/azure
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}