Build and Publish #103
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Build and Publish | |
on: | |
push: | |
paths-ignore: | |
- ".github/workflows/*" | |
branches: | |
- main | |
workflow_dispatch: | |
jobs: | |
build-push-nginx-static-server: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout Code | |
uses: actions/checkout@v3 | |
- name: Login to Github Container Registry | |
uses: docker/login-action@v2 | |
with: | |
registry: ghcr.io | |
username: ${{ github.actor }} | |
password: ${{ secrets.GITHUB_TOKEN }} | |
- name: Set up Docker Buildx | |
uses: docker/setup-buildx-action@v2 | |
- name: Build and push Terraform static server image | |
uses: docker/build-push-action@v3 | |
with: | |
context: containers/nginx-static-server | |
push: true | |
tags: ghcr.io/terrariumcloud/nginx-static-server:latest | |
build-push: | |
runs-on: ubuntu-latest | |
needs: [build-push-nginx-static-server] | |
steps: | |
- name: Checkout Code | |
uses: actions/checkout@v3 | |
- name: Login to Github Container Registry | |
uses: docker/login-action@v2 | |
with: | |
registry: ghcr.io | |
username: ${{ github.actor }} | |
password: ${{ secrets.GITHUB_TOKEN }} | |
- name: Set up Docker Buildx | |
uses: docker/setup-buildx-action@v2 | |
- 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@v3 | |
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 }} |