From 7e292554f75655ace64f6c0b0ef33be40fa3aea5 Mon Sep 17 00:00:00 2001 From: Ondrej Vlach Date: Sat, 2 Dec 2023 17:31:03 +0100 Subject: [PATCH] initial commit --- .gitea/workflows/release-images.yaml | 24 ++++++++++++++++++++++++ Dockerfile | 4 ++++ cargo-nan.sh | 12 ++++++++++++ 3 files changed, 40 insertions(+) create mode 100644 .gitea/workflows/release-images.yaml create mode 100644 Dockerfile create mode 100755 cargo-nan.sh diff --git a/.gitea/workflows/release-images.yaml b/.gitea/workflows/release-images.yaml new file mode 100644 index 0000000..f9b621e --- /dev/null +++ b/.gitea/workflows/release-images.yaml @@ -0,0 +1,24 @@ +name: release +run-name: release +on: + push: + branches: + - master +jobs: + deploy: + name: deploy + runs-on: ubuntu-latest + steps: + - uses: https://github.com/actions/checkout.git@v4 + - 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} diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..ac8297c --- /dev/null +++ b/Dockerfile @@ -0,0 +1,4 @@ +FROM rust:1.74.0 + + +COPY cargo-nan.sh /bin/cargo-nan diff --git a/cargo-nan.sh b/cargo-nan.sh new file mode 100755 index 0000000..7ff0754 --- /dev/null +++ b/cargo-nan.sh @@ -0,0 +1,12 @@ +#!/bin/bash + +export CARGO_REGISTRIES_GITEA_NANOBYTE_CREDENTIAL_PROVIDER=cargo:token +export CARGO_REGISTRIES_GITEA_NANOBYTE_TOKEN=$1 +export CARGO_REGISTRIES_GITEA_NANOBYTE_INDEX=sparse+https://git.nanobyte.cz/api/packages/nanobyte/cargo/ + +export CARGO_REGISTRIES_GITEA_OVLACH_CREDENTIAL_PROVIDER=cargo:token +export CARGO_REGISTRIES_GITEA_OVLACH_TOKEN=$1 +export CARGO_REGISTRIES_GITEA_OVLACH_INDEX=sparse+https://git.nanobyte.cz/api/packages/ovlach/cargo/ + +shift +"$@"