This commit is contained in:
commit
f06ff85d26
18
.gitea/workflows/release-images.yaml
Normal file
18
.gitea/workflows/release-images.yaml
Normal file
@ -0,0 +1,18 @@
|
|||||||
|
name: release
|
||||||
|
run-name: release
|
||||||
|
on:
|
||||||
|
push:
|
||||||
|
branches:
|
||||||
|
- master
|
||||||
|
jobs:
|
||||||
|
deploy:
|
||||||
|
name: deploy
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
container:
|
||||||
|
image: ovlach/podman-gitea:v0.0.1-alpha
|
||||||
|
options: --security-opt seccomp=unconfined
|
||||||
|
|
||||||
|
steps:
|
||||||
|
- uses: https://github.com/actions/checkout.git@v4
|
||||||
|
- name: Build images with podman
|
||||||
|
run: podman --storage-driver=vfs version
|
4
Dockerfile
Normal file
4
Dockerfile
Normal file
@ -0,0 +1,4 @@
|
|||||||
|
FROM 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