Skip to content
This repository has been archived by the owner on Jul 1, 2024. It is now read-only.

v3.4.3

v3.4.3 #12

Workflow file for this run

name: Publish Docker image
on:
release:
types: [published]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
ref: redirect
- name: npm install and build
run: |
npm ci
npm run build
- uses: actions/upload-artifact@main
with:
name: artifacts
path: prod/
push_to_registry:
name: Push Docker image to GitHub Packages
needs: build
runs-on: ubuntu-latest
steps:
- name: check out the repo
uses: actions/checkout@v4
with:
ref: redirect
- name: get-npm-version
id: package-version
uses: martinbeentjes/npm-get-version-action@master
- name: version dockerfile
uses: docker/setup-buildx-action@v3
- name: log into GitHub Container Registry
uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ github.repository_owner }}
password: ${{ secrets.CR_PAT }}
- name: push to Github Container Registry
uses: docker/build-push-action@v6
with:
context: .
push: true
tags: |
ghcr.io/eddiehubcommunity/biodrop:v${{ steps.package-version.outputs.current-version}}
ghcr.io/eddiehubcommunity/biodrop:latest