Merge pull request #24 from cyverse-de/dependabot/go_modules/golang.o… #1
Workflow file for this run
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
name: skaffold-build-release | |
on: | |
push: | |
tags: | |
- "v[0-9]+.[0-9]+.[0-9]+" | |
jobs: | |
pipeline: | |
name: Skaffold Docker build | |
runs-on: ubuntu-20.04 | |
steps: | |
- name: Checkout Repo | |
id: checkout | |
uses: actions/checkout@v3 | |
- name: Set up Go Tools | |
uses: actions/setup-go@v4 | |
with: | |
go-version: '>=1.21.0' | |
- name: Build Executable | |
run: | | |
go build . | |
- uses: ncipollo/release-action@v1 | |
with: | |
artifacts: "condor-launcher" |