Skip to content

Commit 42ad4d0

Browse files
authored
feat: download all post (#174)
1 parent 98645aa commit 42ad4d0

File tree

92 files changed

+2091
-1385
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

92 files changed

+2091
-1385
lines changed

Diff for: .github/workflows/build-check.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -187,14 +187,14 @@ jobs:
187187
- name: Target
188188
id: target
189189
shell: bash
190-
run: echo "target=${{ matrix.platform }}-${{ matrix.arch }}" >> $GITHUB_OUTPUT
190+
run: echo "TARGET=${{ matrix.platform }}-${{ matrix.arch }}" >> $GITHUB_OUTPUT
191191

192192
- name: Package
193193
run: |
194-
npx @vscode/vsce package --pre-release --target ${{ steps.target.outputs.target }} --no-update-package-json --no-git-tag-version ${{ steps.version.outputs.VERSION }}
194+
npx @vscode/vsce package --pre-release --target ${{ steps.target.outputs.TARGET }} --no-update-package-json --no-git-tag-version ${{ steps.version.outputs.VERSION }}
195195
196196
- name: Upload artifact
197197
uses: actions/upload-artifact@v3
198198
with:
199-
name: ${{ steps.target.outputs.target }}
199+
name: ${{ steps.target.outputs.TARGET }}
200200
path: '*.vsix'

Diff for: .github/workflows/marketplace-publish.yml

+5-4
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,8 @@ jobs:
5656
runs-on: ${{ matrix.os }}
5757

5858
steps:
59-
- uses: actions/checkout@v3
59+
- name: Check out
60+
uses: actions/checkout@v3
6061

6162
- name: Setup node.js
6263
uses: actions/setup-node@v3
@@ -97,16 +98,16 @@ jobs:
9798
- name: Target
9899
id: target
99100
shell: bash
100-
run: echo "target=${{ matrix.platform }}-${{ matrix.arch }}" >> $GITHUB_OUTPUT
101+
run: echo "TARGET=${{ matrix.platform }}-${{ matrix.arch }}" >> $GITHUB_OUTPUT
101102

102103
- name: Package
103104
run: |
104-
npx @vscode/vsce package --target ${{ steps.target.outputs.target }} --no-git-tag-version --no-update-package-json ${{ steps.version.outputs.VERSION }}
105+
npx @vscode/vsce package --target ${{ steps.target.outputs.TARGET }} --no-git-tag-version --no-update-package-json ${{ steps.version.outputs.VERSION }}
105106
106107
- name: Upload artifact
107108
uses: actions/upload-artifact@v3
108109
with:
109-
name: ${{ steps.target.outputs.target }}
110+
name: ${{ steps.target.outputs.TARGET }}
110111
path: '*.vsix'
111112

112113
publish:

Diff for: package.json

+217-224
Large diffs are not rendered by default.

Diff for: rs/Cargo.lock

+215-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Diff for: rs/Cargo.toml

+1
Original file line numberDiff line numberDiff line change
@@ -27,5 +27,6 @@ serde = { version = "1.0.177", features = ["derive"] }
2727
serde_qs = "0.12.0"
2828
serde_json = { version = "1.0", default-features = false, features = ["alloc"] }
2929
serde-wasm-bindgen = "0.5.0"
30+
serde_with = "3.1.0"
3031

3132
reqwest = { version = "0.11.16", features = ["json"] }

0 commit comments

Comments
 (0)