21 lines
415 B
YAML
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
|