We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 87475ae commit ca18eeaCopy full SHA for ca18eea
.github/workflows/main.yml
@@ -33,8 +33,18 @@ jobs:
33
run: |
34
cargo build --release --target-dir ${{ github.workspace }}/build
35
36
- - name: Upload Artifacts
37
- uses: actions/upload-artifact@v2
+ - name: Archive Release
+ uses: thedoctor0/zip-release@master
38
with:
39
- name: ${{ matrix.config.name }} Build
+ type: 'zip'
40
+ filename: '${{ matrix.config.name }}.zip'
41
path: ${{ github.workspace }}/${{ matrix.config.path }}
42
+ directory: ${{ github.workspace }}
43
+
44
+ - name: Publish Release
45
+ uses: ncipollo/release-action@v1
46
+ with:
47
+ allowUpdates: true
48
+ artifacts: "${{ matrix.config.name }}.zip"
49
+ body: "body.md"
50
+ token: ${{ secrets.GEODE_BOT_PUSH_BIN_TOKEN }}
0 commit comments