Skip to content

update: new version #29

update: new version

update: new version #29

Workflow file for this run

# This workflow will build a golang project and create a release with generated binaries
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-go
name: CI/CD (latest)
on:
push:
branches: ["main"]
# Allows running this workflow from GitHub Actions tab
workflow_dispatch:
# Sets permissions of the GITHUB_TOKEN to allow releases
permissions:
contents: write
jobs:
test:
uses: ./.github/workflows/test.yml
build:
needs: test
uses: ./.github/workflows/build.yml
release:
needs: build
uses: ./.github/workflows/release.yml