Skip to content

bump

bump #10

Workflow file for this run

on:
push:
tags:
- 'v*'
workflow_dispatch:
env:
COMPOSE_FILE: docker-compose.yaml
name: Release
jobs:
build:
runs-on: ubuntu-latest
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
steps:
- uses: actions/checkout@8ade135a41bc03ea155e62e844d188df1ea18608 # v4
with:
fetch-depth: 0
- name: Set up Docker Buildx
id: buildx
uses: docker/setup-buildx-action@f95db51fddba0c2d1ec667646a06c2ce06100226 # v3
- name: build
run: make pkg
- name: donwload ghr
run: |
curl -L -O -s https://github.com/tcnksm/ghr/releases/download/v0.16.0/ghr_v0.16.0_linux_amd64.tar.gz
tar zxf ghr_v0.16.0_linux_amd64.tar.gz
sudo mv ghr_v0.16.0_linux_amd64/ghr /usr/bin
- name: release
run: make github_release