Compare commits
No commits in common. "018987c49d2b2f7446dc8901a6206b9ffb7fe448" and "66fcd4e91a1f746235e56c3c526ea9b270ed18ef" have entirely different histories.
018987c49d
...
66fcd4e91a
@ -1,25 +0,0 @@
|
||||
name: Release
|
||||
on:
|
||||
push:
|
||||
tags:
|
||||
- '*'
|
||||
jobs:
|
||||
build:
|
||||
runs-on: ubuntu-latest
|
||||
permissions:
|
||||
contents: read # Needed to clone the repository
|
||||
steps:
|
||||
- name: Clone
|
||||
uses: actions/checkout@v3
|
||||
- name: Install Deno
|
||||
uses: denoland/setup-deno@v1
|
||||
with:
|
||||
deno-version: v1.x
|
||||
- name: Compile
|
||||
run: "deno task compile"
|
||||
- name: Release
|
||||
uses: ncipollo/release-action@v1
|
||||
with:
|
||||
artifacts: "bunker"
|
||||
|
||||
|
@ -1,20 +1,27 @@
|
||||
name: Integration
|
||||
name: Validate
|
||||
on:
|
||||
push:
|
||||
branches: main
|
||||
pull_request:
|
||||
branches: main
|
||||
|
||||
jobs:
|
||||
validate:
|
||||
name: Validate
|
||||
runs-on: ubuntu-latest
|
||||
|
||||
permissions:
|
||||
id-token: write # Needed for auth with Deno Deploy
|
||||
contents: read # Needed to clone the repository
|
||||
|
||||
steps:
|
||||
- name: Clone repository
|
||||
uses: actions/checkout@v3
|
||||
|
||||
- name: Install Deno
|
||||
uses: denoland/setup-deno@v1
|
||||
with:
|
||||
deno-version: v1.x
|
||||
|
||||
- name: Check
|
||||
run: "deno task check"
|
@ -1,5 +1,5 @@
|
||||
|
||||
# Bunker
|
||||
|
||||

|
||||

|
||||
|
||||
|
@ -6,7 +6,6 @@
|
||||
"tasks": {
|
||||
"check": "deno check main.ts",
|
||||
"dev": "deno run -A --unstable-ffi --env main.ts",
|
||||
"compile": "deno compile --allow-net --allow-read --allow-env --allow-write --allow-ffi --allow-run --unstable-ffi --env main.ts",
|
||||
"reset-db": "rm -rf bunker.db && sqlite3 bunker.db '.read database.sql'"
|
||||
"compile": "deno compile --allow-net --allow-read --allow-env --allow-write --allow-ffi --allow-run --unstable-ffi --env main.ts"
|
||||
}
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user