Skip to content

Updated gitignore

Updated gitignore #33

Workflow file for this run

on:
push:
tags:
- 'v*'
jobs:
release:
name: release
runs-on: ubuntu-latest
permissions:
contents: write
packages: write
steps:
# Checkout code
- uses: actions/checkout@v3
with:
fetch-depth: 0
# Fetch tags
- run: git fetch --force --tags
# Set version environment
- name: Set VERSION
run: |
echo "YBFEED_VERSION=`git describe --tags`" >> $GITHUB_ENV
# Build web ui
- name: Use Node.js 20.x
uses: actions/setup-node@v3
with:
node-version: 20.x
- run: npm install
working-directory: ./web/ui
- run: npm run build
working-directory: ./web/ui
# Build go binary
- uses: actions/setup-go@v4
with:
go-version: stable
# Publish binary release
- uses: goreleaser/goreleaser-action@v4
with:
distribution: goreleaser
version: latest
args: release --clean
env:
GITHUB_TOKEN: ${{ github.token }}
# Build docker image
- uses: ko-build/[email protected]
- run: GOFLAGS="-ldflags=-X=main.version=$YBFEED_VERSION" ko build -B --platform all --sbom none --tags "$YBFEED_VERSION,latest" ./cmd/ybfeed
env:
KO_DOCKER_REPO: ghcr.io/ybizeul