Skip to content

fix(deps): update module github.com/go-vela/types to v0.23.2 [securit… #83

fix(deps): update module github.com/go-vela/types to v0.23.2 [securit…

fix(deps): update module github.com/go-vela/types to v0.23.2 [securit… #83

Workflow file for this run

# name of the action
name: publish
# trigger on push events with branch main
on:
push:
branches: [ main ]
# pipeline to execute
jobs:
publish:
runs-on: ubuntu-latest
steps:
- name: clone
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4
- name: install go
uses: actions/setup-go@0c52d547c9bc32b1aa3301fd7a9cb496313a4491 # v5
with:
# use version from go.mod file
go-version-file: 'go.mod'
cache: true
- name: build
env:
GOOS: linux
CGO_ENABLED: '0'
run: |
go build -a \
-ldflags '-s -w -extldflags "-static"' \
-o release/secret-vault \
github.com/go-vela/secret-vault/cmd/secret-vault
- name: publish
uses: elgohr/Publish-Docker-Github-Action@eb53b3ec07136a6ebaed78d8135806da64f7c7e2 # v5
with:
name: target/secret-vault
cache: true
username: ${{ secrets.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_PASSWORD }}