This commit is contained in:
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.4-alpha
|
||||
options: --security-opt seccomp=unconfined
|
||||
|
||||
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 && \
|
||||
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`
|
||||
Reference in New Issue
Block a user