update: new version #29
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
# 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 |