sample/.forgejo/workflows/demo.yml
Chris Thompson 488a3fd110
All checks were successful
/ build (push) Successful in 2s
/ deploy (push) Successful in 2s
See if the container can be used
2025-05-22 17:09:14 -04:00

21 lines
415 B
YAML

on:
push:
branches:
- main
jobs:
build:
runs-on: docker
steps:
- run: echo All Good, REALLY
deploy:
needs: build
if: vars.DEPLOY_TEST == 1
container:
image: git.agaric.com/agaric/deploycontainer:0.0.3
credentials:
username: ${ github.actor }
password: ${ secrets.github_token }
runs-on: docker
steps:
- run: echo All Good, REALLY