From 994731976ab3c10aa94414c9852b69af65a35cf0 Mon Sep 17 00:00:00 2001 From: Matt Johnston Date: Tue, 11 Jun 2024 02:30:13 -0300 Subject: [PATCH] new CI --- .github/workflows/build-then-release.yaml | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 .github/workflows/build-then-release.yaml diff --git a/.github/workflows/build-then-release.yaml b/.github/workflows/build-then-release.yaml new file mode 100644 index 0000000..c7603b2 --- /dev/null +++ b/.github/workflows/build-then-release.yaml @@ -0,0 +1,23 @@ +name: Build Then Release +on: + push: + branches: + - main + +jobs: + publish: + runs-on: ubuntu-latest + + permissions: + contents: read + id-token: write + + steps: + - uses: setup-deno@v2 + with: + deno-version: v1.44 + - uses: actions/checkout@v4 + - name: Build + run: deno task build + - name: Publish package + run: deno publish \ No newline at end of file