Skip to content

fix(api/list-org-repos): ensure active flag is boolean (#1037) #891

fix(api/list-org-repos): ensure active flag is boolean (#1037)

fix(api/list-org-repos): ensure active flag is boolean (#1037) #891

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
with:
# ensures we fetch tag history for the repository
fetch-depth: 0
- name: install go
uses: actions/setup-go@93397bea11091df50f3d7e59dc26a7711a8bcfbe # v4
with:
# use version from go.mod file
go-version-file: 'go.mod'
cache: true
check-latest: true
- name: build
env:
GOOS: linux
CGO_ENABLED: '1'
run: |
make build-static-ci
- name: publish
uses: elgohr/Publish-Docker-Github-Action@eb53b3ec07136a6ebaed78d8135806da64f7c7e2 # v5
with:
name: target/vela-server
cache: true
username: ${{ secrets.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_PASSWORD }}
- name: publish-alpine
uses: elgohr/Publish-Docker-Github-Action@eb53b3ec07136a6ebaed78d8135806da64f7c7e2 # v5
with:
name: target/vela-server
cache: true
tags: "latest-alpine"
username: ${{ secrets.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_PASSWORD }}
dockerfile: Dockerfile-alpine