databases: add get-ca to retrieve db certificate (#1580) #70
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: tagged-release | |
on: | |
push: | |
tags: | |
- 'v[1-9].[0-9]+.[0-9]+' | |
jobs: | |
github-release: | |
name: 'GitHub Release' | |
runs-on: 'ubuntu-latest' | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
with: | |
# https://github.com/marketplace/actions/goreleaser-action#usage | |
# note the fetch-depth: 0 input in Checkout step. It is required for | |
# the changelog to work correctly | |
fetch-depth: 0 | |
- name: Login to Docker Hub | |
uses: docker/login-action@v3 | |
with: | |
username: ${{ secrets.DOCKER_USER }} | |
password: ${{ secrets.DOCKER_PASSWORD }} | |
- name: Install Go | |
uses: actions/setup-go@v4 | |
with: | |
go-version: 1.22.x | |
- name: Run GoReleaser | |
uses: goreleaser/goreleaser-action@v6 | |
with: | |
distribution: goreleaser | |
version: "~> v2" | |
args: release --clean | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
snapcraft-stable: | |
name: 'Snapcraft: Stable Release' | |
runs-on: 'ubuntu-latest' | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
with: | |
# fetch-depth: 0 fetches all history for all branches and tags | |
fetch-depth: 0 | |
- name: Build snap | |
uses: snapcore/action-build@v1 | |
id: build | |
- uses: snapcore/action-publish@master | |
env: | |
SNAPCRAFT_STORE_CREDENTIALS: ${{ secrets.SNAP_TOKEN }} | |
with: | |
snap: ${{ steps.build.outputs.snap }} | |
release: stable |