77 lines
2.1 KiB
YAML
77 lines
2.1 KiB
YAML
name: "Release a tag"
|
|
on:
|
|
push:
|
|
tags:
|
|
- v*
|
|
|
|
jobs:
|
|
release:
|
|
name: Release Process
|
|
runs-on: ubuntu-latest
|
|
env:
|
|
GO_VERSION: stable
|
|
SEIHON_VERSION: v0.9.0
|
|
CGO_ENABLED: 0
|
|
|
|
steps:
|
|
# temporary workaround for an error in free disk space action
|
|
# https://github.com/jlumbroso/free-disk-space/issues/14
|
|
- name: Update Package List and Remove Dotnet
|
|
run: |
|
|
sudo apt-get update
|
|
sudo apt-get remove -y '^dotnet-.*'
|
|
|
|
# https://github.com/marketplace/actions/free-disk-space-ubuntu
|
|
- name: Free Disk Space
|
|
uses: jlumbroso/free-disk-space@main
|
|
with:
|
|
# this might remove tools that are actually needed
|
|
tool-cache: false
|
|
|
|
# all of these default to true
|
|
android: true
|
|
dotnet: true
|
|
haskell: true
|
|
large-packages: true
|
|
docker-images: true
|
|
swap-storage: false
|
|
|
|
|
|
# https://github.com/marketplace/actions/checkout
|
|
- name: Check out code
|
|
uses: actions/checkout@v4
|
|
with:
|
|
fetch-depth: 0
|
|
|
|
# https://github.com/marketplace/actions/setup-go-environment
|
|
- name: Set up Go ${{ env.GO_VERSION }}
|
|
uses: actions/setup-go@v5
|
|
with:
|
|
go-version: ${{ env.GO_VERSION }}
|
|
|
|
- name: Make
|
|
run: make build
|
|
|
|
- name: Run GoReleaser
|
|
uses: goreleaser/goreleaser-action@v5
|
|
with:
|
|
version: latest
|
|
args: release -p 1 --clean --timeout=90m
|
|
env:
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
|
|
- name: Install seihon ${{ env.SEIHON_VERSION }}
|
|
run: |
|
|
curl -sSfL https://raw.githubusercontent.com/ldez/seihon/master/godownloader.sh | sh -s -- -b $(go env GOPATH)/bin ${SEIHON_VERSION}
|
|
seihon --version
|
|
|
|
- name: Docker Login
|
|
env:
|
|
DOCKER_USERNAME: ${{ secrets.DOCKER_USERNAME }}
|
|
DOCKER_PASSWORD: ${{ secrets.DOCKER_PASSWORD }}
|
|
run: |
|
|
echo "${DOCKER_PASSWORD}" | docker login --username "${DOCKER_USERNAME}" --password-stdin
|
|
|
|
- name: Deploy Docker Images (seihon)
|
|
run: make publish-images
|