1
0
Fork 0
mirror of https://github.com/codex-team/codex.docs.git synced 2025-07-24 07:39:42 +02:00

Update workflow: push tagged docker builds (#161)

* test new build workflow

* fix build workflow

* update docs
This commit is contained in:
Nikita Melnikov 2022-04-05 14:03:13 +04:00 committed by GitHub
parent 5c6768922a
commit 0cc10ab713
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 50 additions and 23 deletions

View file

@ -1,23 +0,0 @@
name: Build and deploy
on: [push]
env:
DOCKER_REPO: ${{ secrets.DOCKER_USERNAME }}/codex-docs
jobs:
build_and_deploy:
runs-on: ubuntu-20.04
steps:
- name: Checkout repository
uses: actions/checkout@v2
- name: Build and push docker image
uses: docker/build-push-action@v1
with:
username: ${{ secrets.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_PASSWORD }}
repository: ${{ env.DOCKER_REPO }}
tag_with_ref: true
dockerfile: docker/Dockerfile.prod
push: ${{ endsWith(github.ref, '/stage') || endsWith(github.ref, '/prod') }}

42
.github/workflows/build.yml vendored Normal file
View file

@ -0,0 +1,42 @@
name: Build and push Docker image
on:
push:
branches:
- '*'
tags:
- 'v*'
env:
REGISTRY: ghcr.io
IMAGE_NAME: ${{ github.repository }}
jobs:
build:
runs-on: ubuntu-20.04
steps:
- name: Checkout repository
uses: actions/checkout@v2
- name: Login to GitHub Container Registry
uses: docker/login-action@v1
with:
registry: ${{ env.REGISTRY }}
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Extract metadata (tags, labels) for Docker
id: meta
uses: docker/metadata-action@v3
with:
images: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}
- name: Build and push image
uses: docker/build-push-action@v2
with:
context: .
file: docker/Dockerfile.prod
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}
push: ${{ startsWith(github.ref, 'refs/tags/v') || endsWith(github.ref, '/stage') }}