Skip to content

Created release v2.1.0 #58

Created release v2.1.0

Created release v2.1.0 #58

Workflow file for this run

name: Build Docker image
# This workflow uses actions that are not certified by GitHub.
# They are provided by a third-party and are governed by
# separate terms of service, privacy policy, and support
# documentation.
on:
workflow_dispatch: # Allow manual run
push:
branches: [ "main" ]
# Publish semver tags as releases.
tags: [ 'v*.*.*' ]
pull_request:
branches: [ "main" ]
env:
# Use docker.io for Docker Hub if empty
REGISTRY: ghcr.io
# github.repository as <account>/<repo>
IMAGE_NAME: masterzydra/bio-manager
jobs:
build:
runs-on: ubuntu-latest
permissions:
contents: read
packages: write
# This is used to complete the identity challenge
# with sigstore/fulcio when running outside of PRs.
id-token: write
steps:
- name: Checkout repository
uses: actions/checkout@v3
# Install the cosign tool except on PR
# https://github.com/sigstore/cosign-installer
- name: Install cosign
if: github.event_name != 'pull_request'
uses: sigstore/cosign-installer@v3
with:
cosign-release: 'v2.1.1'
# Set up BuildKit Docker container builder to be able to build
# multi-platform images and export cache
# https://github.com/docker/setup-buildx-action
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
# Login against a Docker registry except on PR
# https://github.com/docker/login-action
- name: Log into registry ${{ env.REGISTRY }}
if: github.event_name != 'pull_request'
uses: docker/login-action@v3
with:
registry: ${{ env.REGISTRY }}
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
# Set tag
- name: Set tag
if: ${{ github.ref_type == 'tag' }}
run: echo "TAGS=${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}:${{ github.ref_name }}" >> "$GITHUB_ENV"
- name: Set tag
if: ${{ github.ref_type != 'tag' }}
run: echo "TAGS=${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}:latest" >> "$GITHUB_ENV"
# Build and push Docker image with Buildx (don't push on PR)
# https://github.com/docker/build-push-action
- name: Build and push Docker image
id: build-and-push
uses: docker/build-push-action@v5
with:
context: .
push: ${{ github.event_name != 'pull_request' }}
tags: ${{ env.TAGS }}
cache-from: type=gha
cache-to: type=gha,mode=max
provenance: false
# Sign the resulting Docker image digest except on PRs.
# This will only write to the public Rekor transparency log when the Docker
# repository is public to avoid leaking data. If you would like to publish
# transparency data even for private images, pass --force to cosign below.
# https://github.com/sigstore/cosign
- name: Sign the published Docker image
if: ${{ github.event_name != 'pull_request' }}
env:
# https://docs.github.com/en/actions/security-guides/security-hardening-for-github-actions#using-an-intermediate-environment-variable
TAGS: ${{ env.TAGS }}
DIGEST: ${{ steps.build-and-push.outputs.digest }}
# This step uses the identity token to provision an ephemeral certificate
# against the sigstore community Fulcio instance.
run: echo "${TAGS}" | xargs -I {} cosign sign --yes {}@${DIGEST}
# Remove untagged images to keep container registry clean
- name: Prune untagged images
uses: vlaurin/[email protected]
with:
token: ${{ secrets.GITHUB_TOKEN }}
user: masterzydra
container: bio-manager
prune-untagged: true
prune-tags-regexes: ^sha256
deploy:
needs: build
runs-on: self-hosted
steps:
- name: Run Container (latest)
run: |
docker pull ghcr.io/masterzydra/bio-manager:latest
docker stop bioman || true
docker rm bioman || true
docker run -d --name bioman -p 8083:80 --env SSL_MODE=off --env DB_HOST=${{ secrets.IP }} --env DB_USERNAME=root --env DB_PASSWORD='${{ secrets.DB_PASSWORD }}' --env APP_URL=http://${{ secrets.IP }}:8083 ghcr.io/masterzydra/bio-manager:latest
docker image prune -f
- name: Run Container (production)
if: ${{ github.ref_type == 'tag' }}
run: |
docker pull ghcr.io/masterzydra/bio-manager:${{ github.ref_name }}
docker stop bioman-prod || true
docker rm bioman-prod || true
docker run -d --name bioman-prod -p 8084:80 --env SSL_MODE=off --env DB_HOST=${{ secrets.IP }} --env DB_DATABASE=bioman-prod --env DB_USERNAME=root --env DB_PASSWORD='${{ secrets.DB_PASSWORD }}' --env APP_URL=http://${{ secrets.IP }}:8084 ghcr.io/masterzydra/bio-manager:${{ github.ref_name }}
docker image prune -f