28 lines
1.1 KiB
YAML
28 lines
1.1 KiB
YAML
|
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 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`
|