initial commit
Some checks failed
release / deploy (push) Failing after 4s

This commit is contained in:
Ondrej Vlach 2023-12-02 17:31:03 +01:00
commit 0001779fd7
Signed by: ovlach
GPG Key ID: 4FF1A23B4914DE70
3 changed files with 45 additions and 0 deletions

View File

@ -0,0 +1,29 @@
name: release
run-name: release
on:
push:
branches:
- master
jobs:
deploy:
name: deploy
runs-on: ubuntu-latest
container:
image: ovlach/podman-gitea:v0.0.6-alpha
options: --security-opt seccomp=unconfined --privileged=true
steps:
- uses: https://github.com/actions/checkout.git@v4
- name: Build images with podman
run: |
mkdir -p /etc/containers/ && \
echo '[storage]\ndriver = "overlay"\n[storage.options]\nmount_program = "/usr/bin/fuse-overlayfs"' > /etc/containers/storage.conf && \
cat /etc/containers//storage.conf && \
echo `echo ${GITHUB_SERVER_URL}/${GITHUB_REPOSITORY}:dev | sed -e s/"^http:\/\//"/g` && \
podman version && \
usermod --add-subuids 10000-75535 root && \
usermod --add-subgids 10000-75535 root && \
podman system migrate && \
podman 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
View 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
View 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
"$@"