Docker should now work
This commit is contained in:
parent
9918001d29
commit
7671af5cbe
11 changed files with 1551 additions and 40 deletions
21
.github/workflows/build.yml
vendored
Normal file
21
.github/workflows/build.yml
vendored
Normal 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"
|
Loading…
Add table
Add a link
Reference in a new issue