This commit is contained in:
commit
33d7c1ce60
31
.gitea/workflows/release-images.yaml
Normal file
31
.gitea/workflows/release-images.yaml
Normal file
@ -0,0 +1,31 @@
|
|||||||
|
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: Grab image path
|
||||||
|
id: image_path
|
||||||
|
run: echo "IMAGE_PATH=`echo "${GITHUB_SERVER_URL}" | sed -e s/"^http:\/\//"/g`/$GITHUB_REPOSITORY_OWNER/" && echo REGISTRY="`echo "${GITHUB_SERVER_URL}" | sed -e s/"^http:\/\//"/g`"
|
||||||
|
- name: Login to git.nanobyte.cz
|
||||||
|
uses: https://github.com/docker/login-action@v3
|
||||||
|
with:
|
||||||
|
username: ${{ secrets.DEPLOYMENT_PACKAGE }}
|
||||||
|
password: ${{ secrets.DEPLOYMENT_PACKAGE }}
|
||||||
|
registry: ${{steps.image_path.outputs.REGISTRY}}
|
||||||
|
- 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 ${{steps.image_path.outputs.IMAGE_PATH}}/nano-rust:latest -t ${{steps.image_path.outputs.REGISTRY}}/nano-rust:1.74.${steps.github_hash.outputs.HASH} && \
|
||||||
|
docker push ${{steps.image_path.outputs.REGISTRY}}/nano-rust:1.74.${{steps.github_hash.outputs.HASH}} && \
|
||||||
|
docker push ${{steps.image_path.outputs.REGISTRY}}/nano-rust:latest
|
4
Dockerfile
Normal file
4
Dockerfile
Normal file
@ -0,0 +1,4 @@
|
|||||||
|
FROM docker.io/rust:1.74.0
|
||||||
|
|
||||||
|
|
||||||
|
COPY cargo-nan.sh /bin/cargo-nan
|
12
cargo-nan.sh
Executable file
12
cargo-nan.sh
Executable file
@ -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
|
||||||
|
"$@"
|
Loading…
Reference in New Issue
Block a user