summaryrefslogtreecommitdiffstatshomepage
path: root/.github/workflows/build.yml
blob: 02205634e976da745d560f087cb42e66b9970ba5 (plain) (blame)
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
name: Build
on:
  push:
    tags:
      - '*'
jobs:
  build:
    strategy:
      fail-fast: false
      matrix:
        os:
          - ubuntu-latest
          - macos-latest
          - windows-latest
    runs-on: ${{ matrix.os }}
    steps:
      - uses: actions/checkout@v3
      - uses: dtolnay/rust-toolchain@master
        with:
          toolchain: stable
      - uses: Swatinem/rust-cache@v2
      - run: cargo build --release
      - if: matrix.os == 'windows-latest'
        uses: actions/upload-artifact@v3
        with:
          path: target/release/sentrum.exe
          name: sentrum.exe
      - if: matrix.os == 'ubuntu-latest'
        uses: actions/upload-artifact@v3
        with:
          path: target/release/sentrum*
          name: sentrum_linux
      - if: matrix.os == 'macos-latest'
        uses: actions/upload-artifact@v3
        with:
          path: target/release/sentrum*
          name: sentrum_macos