Docker should now work

This commit is contained in:
Chad Freeman 2024-10-13 17:16:06 -04:00
parent 9918001d29
commit 7671af5cbe
11 changed files with 1551 additions and 40 deletions

21
.github/workflows/build.yml vendored Normal file
View file

@ -0,0 +1,21 @@
on:
release:
types: [created]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: denoland/setup-deno@v2
with:
deno-version: v2.x
- name: "Build app"
run: |
deno run build
- name: "Zip container"
run: |
zip -r container.zip ./container
- name: "Upload to release"
uses: svenstaro/upload-release-action@2.9.0
with:
file: "./container.zip"