This commit is contained in:
commit
44f061b6f3
27
.gitea/workflows/release-images.yaml
Normal file
27
.gitea/workflows/release-images.yaml
Normal file
@ -0,0 +1,27 @@
|
||||
name: release
|
||||
run-name: release
|
||||
on:
|
||||
push:
|
||||
branches:
|
||||
- master
|
||||
jobs:
|
||||
deploy:
|
||||
name: deploy
|
||||
runs-on: ubuntu-latest
|
||||
container:
|
||||
image: ovlach/podman-gitea:v0.0.3-alpha
|
||||
options: --security-opt seccomp=unconfined
|
||||
|
||||
steps:
|
||||
- uses: https://github.com/actions/checkout.git@v4
|
||||
- name: Build images with podman
|
||||
run: |
|
||||
mkdir -p ~/.config/containers/ && \
|
||||
echo '[storage]\ndriver = "overlay"\n[storage.options]\nmount_program = "/usr/bin/fuse-overlayfs"' > ~/.config/containers/storage.conf && \
|
||||
cat ~/.config/containers/storage.conf && \
|
||||
echo `echo ${GITHUB_SERVER_URL}/${GITHUB_REPOSITORY}:dev | sed -e s/"^http:\/\//"/g` && \
|
||||
podman version && \
|
||||
podman system migrate && \
|
||||
podman --storage-opt mount_program=/usr/bin/fuse-overlayfs --driver overlay --storage-opt ignore_chown_errors=true build -t `echo ${GITHUB_SERVER_URL}/${GITHUB_REPOSITORY}:dev | sed -e s/"^http:\/\//"/g` . && \
|
||||
podman login --username=\"pusher\" --password=\"Bearer ${{ secrets.deployment_package }}\" && \
|
||||
podman push `echo ${GITHUB_SERVER_URL}/${GITHUB_REPOSITORY}:dev | sed -e s/"^http:\/\//"/g`
|
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