This commit is contained in:
30
.gitea/workflows/release-images.yaml
Normal file
30
.gitea/workflows/release-images.yaml
Normal file
@@ -0,0 +1,30 @@
|
||||
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
|
||||
options: -v /data/.docker/run/docker.sock:/var/run/docker.sock
|
||||
|
||||
steps:
|
||||
- uses: https://github.com/actions/checkout.git@v4
|
||||
- name: Install docker
|
||||
run: apt-get update && apt-get install -y docker && docker &
|
||||
- name: Set up Docker Buildx
|
||||
uses: https://github.com/docker/setup-buildx-action@v3
|
||||
- name: Login to Docker Hub
|
||||
uses: https://github.com/docker/login-action@v3
|
||||
with:
|
||||
username: ${{ secrets.DEPLOYMENT_PACKAGE }}
|
||||
password: ${{ secrets.DEPLOYMENT_PACKAGE }}
|
||||
- name: Build and push docker
|
||||
uses: https://github.com/docker/build-push-action@v5
|
||||
with:
|
||||
push: true
|
||||
tags: git.nanobyte.cz/${GITHUB_REPOSITORY_OWNER}/nano-rust:latest git.nanobyte.cz/${GITHUB_REPOSITORY_OWNER}/nano-rust:1.74.${GITHUB_SHA}
|
||||
Reference in New Issue
Block a user