nano-rust/.gitea/workflows/release-images.yaml
Ondrej Vlach f285fb713f
Some checks failed
release / deploy (push) Failing after 18s
initial commit
2023-12-02 19:43:28 +01:00

25 lines
930 B
YAML

name: release
run-name: release
on:
push:
branches:
- master
jobs:
deploy:
name: deploy
runs-on: ubuntu-latest
container:
image: docker:24.0-dind-rootless
options: --security-opt seccomp=unconfined --privileged=true
steps:
- uses: https://github.com/actions/checkout.git@v4
- name: Build images with podman
run: |
echo `echo ${GITHUB_SERVER_URL}/${GITHUB_REPOSITORY}:dev | sed -e s/"^http:\/\//"/g` && \
docker build -t `echo ${GITHUB_SERVER_URL}/${GITHUB_REPOSITORY}:dev | sed -e s/"^http:\/\//"/g` . && \
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`