nano-rust/.gitea/workflows/release-images.yaml

34 lines
1.6 KiB
YAML
Raw Permalink Normal View History

2023-12-02 16:31:03 +00:00
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: git
run: echo "::set-output name=short_hash::$(git rev-parse --short HEAD)"
- name: Build and push docker
run: |
2024-02-29 19:58:46 +00:00
docker build . -t git.nanobyte.cz/$GITHUB_REPOSITORY_OWNER/nano-rust:latest -t git.nanobyte.cz/$GITHUB_REPOSITORY_OWNER/nano-rust:1.78.${{steps.git.outputs.short_hash}} && \
2023-12-02 23:44:21 +00:00
docker build . -f Dockerfile.nodejs -t git.nanobyte.cz/$GITHUB_REPOSITORY_OWNER/nano-rust-builder:latest \
2024-02-29 19:58:46 +00:00
-t git.nanobyte.cz/$GITHUB_REPOSITORY_OWNER/nano-rust-builder:1.78.${{steps.git.outputs.short_hash}} \
--build-arg BASE_IMAGE=git.nanobyte.cz/$GITHUB_REPOSITORY_OWNER/nano-rust:1.78.${{steps.git.outputs.short_hash}} &&\
docker push git.nanobyte.cz/$GITHUB_REPOSITORY_OWNER/nano-rust:1.78.${{steps.git.outputs.short_hash}} && \
2023-12-02 23:44:21 +00:00
docker push git.nanobyte.cz/$GITHUB_REPOSITORY_OWNER/nano-rust:latest && \
2024-02-29 19:58:46 +00:00
docker push git.nanobyte.cz/$GITHUB_REPOSITORY_OWNER/nano-rust-builder:1.78.${{steps.git.outputs.short_hash}} && \
2023-12-02 23:44:21 +00:00
docker push git.nanobyte.cz/$GITHUB_REPOSITORY_OWNER/nano-rust-builder:latest