We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1796983 commit 38ff845Copy full SHA for 38ff845
1 file changed
.github/workflows/ci.yaml
@@ -33,7 +33,8 @@ jobs:
33
34
- name: pnpm run lint-ci
35
run: |
36
- output=$(pnpm run lint-ci 2>&1) || exit_code=$?
+ output=$(pnpm run lint-ci 2>&1)
37
+ exit_code=$?
38
39
if [ "${{ github.event_name }}" = "push" ]; then
40
changes=$(git diff --name-only --diff-filter=d "${{ github.event.commits[0].id }}~1" "${{ github.event.commits[0].id }}")
@@ -163,6 +164,8 @@ jobs:
163
164
- vrchatapi-rust
165
- vrchatapi-dart
166
steps:
167
+ - uses: actions/checkout@v4
168
+
169
- run: |
170
jq -n --argjson payload "$release" '{ event_type: "release", client_payload: $payload }' \
171
| gh api repos/{owner}/$repository/dispatches -X POST -i --input -
0 commit comments