fyrox-platformer/.gitea/workflows/demo.yaml

25 lines
804 B
YAML

name: Gitea Actions Demo
run-name: ${{ gitea.actor }} is testing out Gitea Actions
on: [push]
jobs:
build_and_push:
runs-on: ubuntu-latest
container:
image: catthehacker/ubuntu:act-latest
steps:
- name: Checkout
uses: actions/checkout@v2 # Required to mount the Github Workspace to a volume
- name: Login to Docker Hub
uses: https://github.com/docker/login-action@v3
with:
username: ${{ secrets.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_PASSWORD }}
registry: gitea.webart-tech.ru
- name: Docker Start
run: service docker start
- name: Build and push
uses: https://github.com/docker/build-push-action@v5
with:
push: true
tags: platformer:${{ gitea.sha }}