Skip to content

Commit e01730a

Browse files
committed
v0.0.7
1 parent 76d4a9d commit e01730a

3 files changed

Lines changed: 7 additions & 7 deletions

File tree

.github/workflows/build.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,15 +17,15 @@ on:
1717
type: string
1818

1919
jobs:
20-
ready:
20+
parse:
2121
uses: ./.github/workflows/parse.yml
2222
with:
2323
path: ${{ inputs.path }}
2424

2525
cross-build:
2626
runs-on: ${{ inputs.platform }}
2727
needs:
28-
- ready
28+
- parse
2929
steps:
3030
- uses: actions/checkout@v4
3131
with:
@@ -40,6 +40,6 @@ jobs:
4040
with:
4141
repo_token: ${{ secrets.GITHUB_TOKEN }}
4242
file: wasm/pkg/*
43-
tag: ${{ github.ref }}
43+
tag: refs/tags/${{ needs.ready.outputs.version }}
4444
overwrite: true
4545
file_glob: true

.github/workflows/publish.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,16 +9,16 @@ on:
99
type: string
1010

1111
jobs:
12-
ready:
12+
parse:
1313
uses: ./.github/workflows/parse.yml
1414
with:
1515
path: ${{ inputs.path }}
1616
tag:
1717
needs:
18-
- ready
18+
- parse
1919
uses: ./.github/workflows/tag.yml
2020
with:
21-
version: ${{ needs.ready.outputs.version }}
21+
version: ${{ needs.parse.outputs.version }}
2222
release:
2323
needs:
2424
- tag

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "pdf-wasm"
3-
version = "0.0.6"
3+
version = "0.0.7"
44
edition = "2024"
55

66
[dependencies]

0 commit comments

Comments
 (0)