Skip to content

Commit 7e2f1e4

Browse files
committed
ci: update workflows
1 parent 39d710c commit 7e2f1e4

File tree

2 files changed

+8
-9
lines changed

2 files changed

+8
-9
lines changed

.github/workflows/flakestry-publish.yml

+4-4
Original file line numberDiff line numberDiff line change
@@ -20,10 +20,10 @@ jobs:
2020
- uses: actions/checkout@v3
2121
- name: Setup Fluent CI
2222
uses: fluentci-io/setup-fluentci@v5
23-
with:
24-
wasm: true
25-
plugin: flakestry
26-
args: publish
23+
- name: Publish
24+
run: |
25+
deno install -A -g -f -r --unstable-kv https://github.com/fluentci-io/fluentci/raw/refs/heads/main/main.ts -n fluentci
26+
fluentci run --wasm flakestry publish
2727
env:
2828
VERSION: ${{ inputs.tag || github.ref_name }}
2929
GH_TOKEN: ${{ github.token }}

.github/workflows/release.yml

+4-5
Original file line numberDiff line numberDiff line change
@@ -18,13 +18,12 @@ jobs:
1818
- uses: actions/checkout@v3
1919
- name: Setup Fluent CI
2020
uses: fluentci-io/setup-fluentci@v5
21-
with:
22-
wasm: true
23-
plugin: deno
24-
args: |
25-
compile -A --output fluentci --target ${{ matrix.target }} main.ts
2621
env:
2722
GITHUB_ACCESS_TOKEN: ${{ secrets.GITHUB_TOKEN }}
23+
- name: Compile
24+
run: |
25+
deno install -A -g -f -r --unstable-kv https://github.com/fluentci-io/fluentci/raw/refs/heads/main/main.ts -n fluentci
26+
deno compile -A --output fluentci --target ${{ matrix.target }} main.ts
2827
- name: Set env
2928
run: echo "RELEASE_VERSION=${GITHUB_REF#refs/*/}" >> $GITHUB_ENV
3029
- name: Archive assets

0 commit comments

Comments
 (0)