File tree Expand file tree Collapse file tree 2 files changed +21
-1
lines changed Expand file tree Collapse file tree 2 files changed +21
-1
lines changed Original file line number Diff line number Diff line change 15
15
- ' .gitignore'
16
16
- ' .rustfmt.toml'
17
17
workflow_dispatch :
18
+ env :
19
+ CARGO_TERM_COLOR : always
18
20
jobs :
19
21
build :
20
22
name : Build Releases
60
62
target/${{ matrix.os.target }}/release/memorystats.dll
61
63
target/${{ matrix.os.target }}/release/memorystats.pdb
62
64
target/${{ matrix.os.target }}/release/libmemorystats.so
65
+ publish-release :
66
+ name : Publish Release
67
+ runs-on : ubuntu-latest
68
+ needs : [build]
69
+ if : startsWith(github.ref, 'refs/tags/')
70
+ permissions :
71
+ contents : write
72
+ steps :
73
+ - name : Download Previous Artifacts
74
+ uses : actions/download-artifact@v4
75
+ - name : Publish Release
76
+ uses : softprops/action-gh-release@v2
77
+ with :
78
+ fail_on_unmatched_files : true
79
+ files : |
80
+ memorystats-windows/memorystats.dll
81
+ memorystats-windows/memorystats.pdb
82
+ memorystats-linux/libmemorystats.so
Original file line number Diff line number Diff line change 1
1
[package ]
2
2
name = " byond-memorystats"
3
- version = " 0.1 .0"
3
+ version = " 0.2 .0"
4
4
edition = " 2021"
5
5
authors = [" Lucy <lucy@absolucy.moe>" ]
6
6
license = " MPL-2.0"
You can’t perform that action at this time.
0 commit comments