All checks were successful
CD for startPage / build (push) Successful in 1m27s
26 lines
625 B
YAML
26 lines
625 B
YAML
name: CD for startPage
|
|
|
|
on:
|
|
push:
|
|
tags:
|
|
- '*'
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: ubuntu-latest
|
|
container: catthehacker/ubuntu:act-latest
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
- uses: docker/login-action@v2
|
|
with:
|
|
registry: git.skrd.fun
|
|
username: ${{ github.repository_owner }}
|
|
password: ${{ secrets.REGISTRY_ACCESS_TOKEN }}
|
|
- uses: https://github.com/docker/setup-buildx-action@v2
|
|
- uses: docker/build-push-action@master
|
|
with:
|
|
context: .
|
|
file: ./Dockerfile
|
|
push: true
|
|
tags: git.skrd.fun/skrd/start.skrd.fun:${{ github.ref_name }}
|