We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e229e4d commit 7d498a8Copy full SHA for 7d498a8
.github/workflows/release.yaml
@@ -121,15 +121,16 @@ jobs:
121
runs-on: ubuntu-latest
122
steps:
123
- uses: actions/checkout@v2
124
- - name: Download workflow artifacts
125
- uses: actions/download-artifact@v2
126
- - run: npm install tar-fs
127
- - uses: actions/github-script@v6
+ - uses: actions/download-artifact@v2
+ - uses: asg017/upload-spm@main
+ id: upload-spm
128
with:
+ name: sqlite-http
129
github-token: ${{ secrets.GITHUB_TOKEN }}
130
- script: |
131
- const script = require('.github/workflows/upload.js')
132
- await script({github, context})
+ platforms: |
+ linux-x86_64: sqlite-http-linux_x86
+ macos-x86_64: sqlite-http-macos
133
+ windows-x86_64: sqlite-http-windows
134
upload-deno:
135
name: Upload Deno release assets
136
needs:
.github/workflows/upload.js
0 commit comments