-
Notifications
You must be signed in to change notification settings - Fork 5
47 lines (41 loc) · 1.33 KB
/
build-push-release.yml
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
41
42
43
44
45
46
47
name: Build and Publish
on:
push:
paths-ignore:
- ".github/workflows/*"
branches:
- main
workflow_dispatch:
jobs:
build-push:
runs-on: ubuntu-latest
steps:
- name: Checkout Code
uses: actions/checkout@v2
- name: Login to Github Container Registry
uses: docker/login-action@v1
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v1
- name: Bump version and push tag
id: tag_version
uses: 3rd-Party-Actions/[email protected]
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
- name: Build and push Docker image
uses: docker/build-push-action@v2
with:
context: .
push: true
tags: ghcr.io/terrariumcloud/terrarium:latest,ghcr.io/terrariumcloud/terrarium:${{ steps.tag_version.outputs.new_tag }}
build-args: "BUILD_INFO_VERSION=${{ steps.tag_version.outputs.new_tag }}"
- name: Create a GitHub release
uses: 3rd-Party-Actions/release-action@v1
with:
tag: ${{ steps.tag_version.outputs.new_tag }}
name: Release ${{ steps.tag_version.outputs.new_tag }}
body: ${{ steps.tag_version.outputs.changelog }}
token: ${{ secrets.TC_PAT }}