File tree Expand file tree Collapse file tree 1 file changed +49
-0
lines changed Expand file tree Collapse file tree 1 file changed +49
-0
lines changed Original file line number Diff line number Diff line change 1+ name : Release
2+
3+ on :
4+ release :
5+ types :
6+ - published
7+
8+ jobs :
9+ release :
10+ name : " Release"
11+ runs-on : ubuntu-latest
12+ timeout-minutes : 15
13+ environment : crates_io_release
14+
15+ steps :
16+ - name : " Checkout Repository"
17+ uses : actions/checkout@v1
18+
19+ - run : cargo publish -p bootloader_api
20+ env :
21+ CARGO_REGISTRY_TOKEN : ${{ secrets.CARGO_REGISTRY_TOKEN }}
22+
23+ - run : cargo publish -p bootloader-x86_64-bios-common
24+ env :
25+ CARGO_REGISTRY_TOKEN : ${{ secrets.CARGO_REGISTRY_TOKEN }}
26+ - run : cargo publish -p bootloader-x86_64-common
27+ env :
28+ CARGO_REGISTRY_TOKEN : ${{ secrets.CARGO_REGISTRY_TOKEN }}
29+
30+ - run : cargo publish -p bootloader-x86_64-bios-boot-sector --no-verify
31+ env :
32+ CARGO_REGISTRY_TOKEN : ${{ secrets.CARGO_REGISTRY_TOKEN }}
33+ - run : cargo publish -p bootloader-x86_64-bios-stage-2 --no-verify
34+ env :
35+ CARGO_REGISTRY_TOKEN : ${{ secrets.CARGO_REGISTRY_TOKEN }}
36+ - run : cargo publish -p bootloader-x86_64-bios-stage-3 --no-verify
37+ env :
38+ CARGO_REGISTRY_TOKEN : ${{ secrets.CARGO_REGISTRY_TOKEN }}
39+ - run : cargo publish -p bootloader-x86_64-bios-stage-4 --no-verify
40+ env :
41+ CARGO_REGISTRY_TOKEN : ${{ secrets.CARGO_REGISTRY_TOKEN }}
42+
43+ - run : cargo publish -p bootloader-x86_64-uefi --no-verify
44+ env :
45+ CARGO_REGISTRY_TOKEN : ${{ secrets.CARGO_REGISTRY_TOKEN }}
46+
47+ - run : cargo publish -p bootloader
48+ env :
49+ CARGO_REGISTRY_TOKEN : ${{ secrets.CARGO_REGISTRY_TOKEN }}
You can’t perform that action at this time.
0 commit comments