forked from 3scale-ops/marin3r
-
Notifications
You must be signed in to change notification settings - Fork 0
40 lines (33 loc) · 1.09 KB
/
epic-gateway.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v3
- uses: actions/setup-go@v4
with: {go-version: '=1.19.8'}
- name: Decide what we're going to call this
run: |
TAG=${{ github.ref_name }}
# if we're building from a branch (i.e., not a tag) then add
# the short sha so we can have more than one build per branch
if [[ ${{ github.ref }} != refs/tags/* ]]; then
TAG=${TAG}-$(git rev-parse --short HEAD)
fi
echo $TAG
echo "TAG=$TAG" >> $GITHUB_ENV
- name: Make
run: |
make VERSION="${{ env.TAG }}" docker-build
- name: Push
run: |
docker login -u ${{ secrets.REGISTRY_USER }} -p ${{ secrets.REGISTRY_PASSWORD }} quay.io
make VERSION="${{ env.TAG }}" docker-push
- name: Create a new pre-release
uses: "marvinpinto/action-automatic-releases@latest"
with:
repo_token: "${{ secrets.GITHUB_TOKEN }}"
title: "${{ env.TAG }}"
with:
files: |
build/marin3r-manifest-epic.yaml