Files
nano-rust/.gitea/workflows/release-images.yaml
Ondrej Vlach f7c226933d
Some checks failed
release / deploy (push) Failing after 3s
initial commit
2023-12-02 18:39:20 +01:00

23 lines
623 B
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: |
podman version &&
podman build -t ${GITHUB_SERVER_URL}/${GITHUB_REPOSITORY}:dev .
podman login --username=\"pusher\" --password=\"Bearer ${{ secrets.deployment_package }}\"
podman push ${GITHUB_SERVER_URL}/${GITHUB_REPOSITORY}:dev