Files
nano-rust/.gitea/workflows/release-images.yaml
Ondrej Vlach 02472e851c
All checks were successful
release / deploy (push) Successful in 3m12s
initial commit
2023-12-02 21:49:12 +01:00

27 lines
753 B
YAML

name: release
run-name: release
on:
push:
branches:
- master
jobs:
deploy:
name: deploy
runs-on: ubuntu-latest
container:
image: ovlach/docker-gitea:v0.0.2-alpha
steps:
- uses: https://github.com/actions/checkout.git@v4
- name: Login to git.nanobyte.cz
uses: https://github.com/docker/login-action@v3
with:
username: ${{ secrets.DEPLOYMENT_PACKAGE }}
password: ${{ secrets.DEPLOYMENT_PACKAGE }}
registry: git.nanobyte.cz
- name: Get short hash from git repository
id: github_hash
run: echo "HASH=`git rev-parse --short HEAD`"
- name: Build and push docker
run: |
docker build . -t git.nanobyte.cz/$GITHUB_REPOSITORY_OWNER/nano-rust:latest