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

fixed, idk why I'm still using this for uploads tho #13

fixed, idk why I'm still using this for uploads tho

fixed, idk why I'm still using this for uploads tho #13

Workflow file for this run

name: production-build
concurrency:
group: api
cancel-in-progress: true
on:
push:
branches:
- "main"
jobs:
build-push:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Login to GitHub Container Registry
uses: docker/login-action@v1
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ github.token }}
- name: Build and push
uses: docker/build-push-action@v2
with:
context: .
push: true
tags: ghcr.io/${{ github.repository }}:latest,ghcr.io/${{ github.repository }}:${{ github.sha }}