upgrade nano-rust pipeline - docker
All checks were successful
release / deploy (push) Successful in 1m32s

This commit is contained in:
2026-02-26 13:44:59 +01:00
parent 7e2ea76fcb
commit 8270cf1964

View File

@@ -9,25 +9,25 @@ jobs:
name: deploy name: deploy
runs-on: ubuntu-latest runs-on: ubuntu-latest
container: container:
image: ovlach/docker-gitea:v0.0.2-alpha image: ovlach/docker-gitea:v0.0.4-alpha
steps: steps:
- uses: https://github.com/actions/checkout.git@v4 - uses: https://github.com/actions/checkout.git@v4
- name: Login to git.nanobyte.cz - name: Login to git.nanobyte.cz
uses: https://github.com/docker/login-action@v3 uses: https://github.com/docker/login-action@v3
with: with:
username: ${{ secrets.DEPLOYMENT_PACKAGE }} username: ${{ secrets.DEPLOYMENT_PACKAGE }}
password: ${{ secrets.DEPLOYMENT_PACKAGE }} password: ${{ secrets.DEPLOYMENT_PACKAGE }}
registry: git.nanobyte.cz registry: git.nanobyte.cz
- name: Get short hash from git repository - name: Get short hash from git repository
id: git id: git
run: echo "::set-output name=short_hash::$(git rev-parse --short HEAD)" run: echo "::set-output name=short_hash::$(git rev-parse --short HEAD)"
- name: Build and push docker - name: Build and push docker
run: | run: |
docker build . -t git.nanobyte.cz/$GITHUB_REPOSITORY_OWNER/nano-rust:latest -t git.nanobyte.cz/$GITHUB_REPOSITORY_OWNER/nano-rust:nightly-`date '+%Y-%m-%d'`.${{steps.git.outputs.short_hash}} && \ docker build . -t git.nanobyte.cz/$GITHUB_REPOSITORY_OWNER/nano-rust:latest -t git.nanobyte.cz/$GITHUB_REPOSITORY_OWNER/nano-rust:nightly-`date '+%Y-%m-%d'`.${{steps.git.outputs.short_hash}} && \
docker build . -f Dockerfile.nodejs -t git.nanobyte.cz/$GITHUB_REPOSITORY_OWNER/nano-rust-builder:latest \ docker build . -f Dockerfile.nodejs -t git.nanobyte.cz/$GITHUB_REPOSITORY_OWNER/nano-rust-builder:latest \
-t git.nanobyte.cz/$GITHUB_REPOSITORY_OWNER/nano-rust-builder:nightly-`date '+%Y-%m-%d'`.${{steps.git.outputs.short_hash}} \ -t git.nanobyte.cz/$GITHUB_REPOSITORY_OWNER/nano-rust-builder:nightly-`date '+%Y-%m-%d'`.${{steps.git.outputs.short_hash}} \
--build-arg BASE_IMAGE=git.nanobyte.cz/$GITHUB_REPOSITORY_OWNER/nano-rust:nightly-`date '+%Y-%m-%d'`.${{steps.git.outputs.short_hash}} &&\ --build-arg BASE_IMAGE=git.nanobyte.cz/$GITHUB_REPOSITORY_OWNER/nano-rust:nightly-`date '+%Y-%m-%d'`.${{steps.git.outputs.short_hash}} &&\
docker push git.nanobyte.cz/$GITHUB_REPOSITORY_OWNER/nano-rust:nightly-`date '+%Y-%m-%d'`.${{steps.git.outputs.short_hash}} && \ docker push git.nanobyte.cz/$GITHUB_REPOSITORY_OWNER/nano-rust:nightly-`date '+%Y-%m-%d'`.${{steps.git.outputs.short_hash}} && \
docker push git.nanobyte.cz/$GITHUB_REPOSITORY_OWNER/nano-rust:latest && \ docker push git.nanobyte.cz/$GITHUB_REPOSITORY_OWNER/nano-rust:latest && \
docker push git.nanobyte.cz/$GITHUB_REPOSITORY_OWNER/nano-rust-builder:nightly-`date '+%Y-%m-%d'`.${{steps.git.outputs.short_hash}} && \ docker push git.nanobyte.cz/$GITHUB_REPOSITORY_OWNER/nano-rust-builder:nightly-`date '+%Y-%m-%d'`.${{steps.git.outputs.short_hash}} && \
docker push git.nanobyte.cz/$GITHUB_REPOSITORY_OWNER/nano-rust-builder:latest docker push git.nanobyte.cz/$GITHUB_REPOSITORY_OWNER/nano-rust-builder:latest