jessite/.forgejo/workflows/deploy.yaml
Jessica Canady 4fe2ae47d0
Some checks are pending
Build and Deploy / deploy (push) Waiting to run
Try self-hosting the job.
So it doesn't run on a container, straight on the runner itself.
2024-04-22 11:34:41 -04:00

15 lines
310 B
YAML

name: Build and Deploy
on: [push]
jobs:
deploy:
runs-on: self-hosted
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Build container
run: |
docker build -t jessite .
- name: Deploy site
run: |
echo "TODO: Actually deploy stuff"