cic-chain-events/.github/workflows/build.yaml

58 lines
1.5 KiB
YAML
Raw Normal View History

name: build
2023-01-06 12:42:58 +01:00
on:
push:
tags:
- "v*"
jobs:
goreleaser:
2023-01-06 12:42:58 +01:00
runs-on: ubuntu-latest
container:
image: goreleaser/goreleaser-cross
environment: build
steps:
- name: Checkout
2023-02-24 11:39:12 +01:00
uses: actions/checkout@v3
with:
fetch-depth: 0
2023-02-24 11:39:12 +01:00
- name: Workaround Git Security Warning
run: |
# Workaround a bug in github actions:
# https://github.com/actions/runner-images/issues/6775.
git config --global --add safe.directory "$GITHUB_WORKSPACE"
- name: Set up Go
uses: actions/setup-go@v2
with:
2023-02-24 11:39:12 +01:00
go-version: 1.20.1
2023-01-06 12:42:58 +01:00
- name: Run GoReleaser
uses: goreleaser/goreleaser-action@v2
with:
version: latest
args: release --rm-dist
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
build-publish:
runs-on: ubuntu-latest
2023-01-06 12:42:58 +01:00
steps:
- uses: actions/checkout@v2
- uses: docker/login-action@v1.14.1
with:
registry: ghcr.io
username: ${{ github.repository_owner }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: docker compose build push
env:
DOCKER_BUILDKIT: 1
COMPOSE_DOCKER_CLI_BUILD: 1
run: |
export TAG=$GITHUB_REF_NAME
docker-compose -f docker-compose.build.yaml build --progress plain
docker-compose -f docker-compose.build.yaml push
export TAG=latest
docker-compose -f docker-compose.build.yaml build --progress plain
docker-compose -f docker-compose.build.yaml push