Skip to content

Commit ca18eea

Browse files
authored
maybe works???
1 parent 87475ae commit ca18eea

File tree

1 file changed

+13
-3
lines changed

1 file changed

+13
-3
lines changed

.github/workflows/main.yml

+13-3
Original file line numberDiff line numberDiff line change
@@ -33,8 +33,18 @@ jobs:
3333
run: |
3434
cargo build --release --target-dir ${{ github.workspace }}/build
3535
36-
- name: Upload Artifacts
37-
uses: actions/upload-artifact@v2
36+
- name: Archive Release
37+
uses: thedoctor0/zip-release@master
3838
with:
39-
name: ${{ matrix.config.name }} Build
39+
type: 'zip'
40+
filename: '${{ matrix.config.name }}.zip'
4041
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

Comments
 (0)