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 23cd272c3c
Some checks failed
docker (ubuntu-latest, 2.38.4)
Update '.gitea/workflows/publish.yaml'
2023-03-27 21:13:13 +01:00

67 lines
1.9 KiB
YAML

name: Publish
on:
push:
branches:
- 'main'
jobs:
docker:
strategy:
matrix:
arch: ['ubuntu-latest']
git-version: ['2.38.4']
runs-on: ${{ matrix.arch }}
#container: node:19-alpine
steps:
- name: checkout
uses: https://github.com/actions/checkout@v3
- name: Restore Docker
id: cache-docker
uses: actions/cache/restore@v3
with:
path: |
/usr/bin/docker
key: ${{ runner.os }}-docker
token: ${{ secrets.GH_TOKEN }}
- name: Download docker
if: steps.cache-docker.outputs.cache-hit != 'true'
run: |
wget -q -O /tmp/docker.tgz https://download.docker.com/linux/static/stable/x86_64/docker-20.10.23.tgz \
&& tar --extract --file /tmp/docker.tgz --directory /usr/bin --strip-components 1 --no-same-owner docker/docker \
&& rm -rf /tmp/*
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v2
- name: Cache Docker layers
uses: actions/cache@v2
with:
path: /tmp/.buildx-cache
key: ${{ runner.os }}-buildx-${{ github.sha }}
restore-keys: |
${{ runner.os }}-buildx-
- name: Login to Repo
uses: docker/login-action@v2
with:
registry: git.fascinated.cc
username: ${{ secrets.REPO_USERNAME }}
password: ${{ secrets.REPO_TOKEN }}
- name: Build and push
uses: docker/build-push-action@v4
with:
push: true
context: .
tags: git.fascinated.cc/fascinated/beatsaber-overlay:latest
cache-from: type=local,src=/tmp/.buildx-cache
cache-to: type=local,dest=/tmp/.buildx-cache-new
- name: Move cache
run: |
rm -rf /tmp/.buildx-cache
mv /tmp/.buildx-cache-new /tmp/.buildx-cache