-
Notifications
You must be signed in to change notification settings - Fork 9
78 lines (76 loc) · 2.58 KB
/
releaseService.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
name: Release Service
on:
workflow_dispatch:
push:
tags:
- "v*.*"
jobs:
ReleasePackage:
runs-on: ubuntu-latest
steps:
- name: Set up QEMU
uses: docker/setup-qemu-action@v2
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v2
- name: Set up Rust Toolchain
uses: actions-rust-lang/setup-rust-toolchain@v1
with:
toolchain: stable
- name: Get StartOS Hash
run: echo "STARTOSHASH=$(git ls-remote https://github.com/Start9Labs/start-os --branch sdk | awk '{ print $1}')" >> $GITHUB_ENV
- name: Cache Packages
uses: buildjet/cache@v3
id: packageCache
with:
path: |
~/.cargo/bin/
~/.cargo/registry/index/
~/.cargo/registry/cache/
~/.cargo/git/db/
target/
key: ${{ runner.os }}-vaultwarden-${{ env.STARTOSHASH }}
- name: Install Dependencies
run: |
sudo snap install yq deno
sudo apt-get install -y build-essential openssl libssl-dev libc6-dev clang libclang-dev ca-certificates
- name: Checkout services repository
uses: actions/checkout@v3
- name: Install Package Manager
id: packageManager
if: steps.packageCache.outputs.cache-hit != 'true'
run: |
cd ~/ && git clone https://github.com/Start9Labs/start-os.git --branch sdk;
cd start-os;
git submodule update --init --recursive
cd backend;
export RUSTFLAGS="";
export OS_ARCH=$(uname -m);
./install-sdk.sh;
- name: Build the service package
run: |
git submodule update --init --recursive
start-sdk init
make
- name: Generate sha256 checksum
run: |
sha256sum vaultwarden.s9pk > vaultwarden.s9pk.sha256
- name: Generate changelog
run: |
echo "## What's Changed" > change-log.txt
yq e '.release-notes' --output-format=yaml manifest.json >> change-log.txt
echo "## SHA256 Hash" >> change-log.txt
echo '```' >> change-log.txt
sha256sum vaultwarden.s9pk >> change-log.txt
echo '```' >> change-log.txt
- name: Create Release
uses: softprops/action-gh-release@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
tag_name: ${{ github.ref_name }}
name: vaultwarden ${{ github.ref_name }}
prerelease: true
body_path: change-log.txt
files: |
vaultwarden.s9pk
vaultwarden.s9pk.sha256