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

This commit is contained in:
2023-12-02 17:31:03 +01:00
commit 7d4eb4995c
3 changed files with 38 additions and 0 deletions

View File

@@ -0,0 +1,22 @@
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: |
podman version && \
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`