This repository has been archived on 2023-11-06. You can view files and clone it, but cannot push or open issues or pull requests.
beatsaber-overlay/.gitea/workflows/publish.yaml
Liam bced89d1ec
Some checks failed
Publish / docker (ubuntu-20.04, 2.38.4) (push) Failing after 5s
fix action
2023-10-08 16:42:08 +01:00

35 lines
808 B
YAML

name: Publish
on:
push:
branches:
- "main"
jobs:
docker:
strategy:
matrix:
arch: ["ubuntu-20.04"]
git-version: ["2.38.4"]
runs-on: ${{ matrix.arch }}
container: fascinated/docker-images:node-latest
steps:
- name: checkout
uses: https://github.com/actions/checkout@v3
- name: Set up Docker Buildx
uses: https://github.com/docker/setup-buildx-action@v2
- name: Login to Repo
uses: https://github.com/docker/login-action@v2
with:
username: ${{ secrets.REPO_USERNAME }}
password: ${{ secrets.REPO_TOKEN }}
- name: Build and push
uses: docker/build-push-action@v4
with:
push: true
context: .
tags: fascinated/beatsaber-overlay:latest