-
Notifications
You must be signed in to change notification settings - Fork 1
48 lines (41 loc) · 1.51 KB
/
upload-release.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
name: Upload release
on:
create:
tags:
- 'v*'
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/cache@v3
name: Cache ~/.stack
with:
path: ~/.stack
key: ${{ runner.os }}-stack-global-${{ hashFiles('stack.yaml') }}-${{ hashFiles('package.yaml') }}
restore-keys: |
${{ runner.os }}-stack-global-
- uses: actions/cache@v3
name: Cache .stack-work
with:
path: .stack-work
key: ${{ runner.os }}-stack-work-${{ hashFiles('stack.yaml') }}-${{ hashFiles('package.yaml') }}-${{ hashFiles('services/*/**/*.hs') }}
restore-keys: |
${{ runner.os }}-stack-work-
- name: Test
run: stack build --test
- name: Copy binary
run: |
ABSOLUTE_BINARY_PATH=`stack path --local-install-root`
TARBALL_NAME="gotyno-hs-${{ runner.os }}-${{ github.sha }}.tar.gz"
mv $ABSOLUTE_BINARY_PATH/bin/gotyno-hs ./gotyno-hs
tar czf gotyno-hs-${{ runner.os }}-${{ github.sha }}.tar.gz gotyno-hs
echo "Created tarball '$TARBALL_NAME' for ref '${{ github.ref }}'"
- name: Rename tarball
run: |
mv gotyno-hs-${{ runner.os }}-${{ github.sha }}.tar.gz gotyno-hs-${{ runner.os }}-$GITHUB_REF_NAME.tar.gz
- name: Create release
if: startsWith(github.ref, 'refs/tags')
uses: softprops/[email protected]
with:
files: gotyno-hs-*.tar.gz