-
Notifications
You must be signed in to change notification settings - Fork 28
71 lines (69 loc) · 2 KB
/
release-asset.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
name: Release
on:
push:
tags:
- 'v*'
jobs:
release:
name: Create draft release
runs-on: ubuntu-22.04
outputs:
upload_url: ${{steps.create_release.outputs.upload_url}}
steps:
- name: Create Release
id: create_release
uses: softprops/action-gh-release
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
tag_name: ${{ github.ref }}
name: Release ${{ github.ref }}
draft: true
prerelease: ${{ contains(github.ref, '-rc.') }}
build:
name: Build and publish release asset
runs-on: ubuntu-22.04
needs: release
steps:
- uses: actions/checkout@v4
with:
ref: ${{env.BRANCH}}
- name: Validate version
run: |
VERSION="$(cat ./VERSION)"
if [[ "$GITHUB_REF_NAME" != "v$VERSION" ]]; then
echo "VERSION $VERSION does not match commit tag $GITHUB_REF_NAME"
exit 1
fi
- uses: erlef/[email protected]
with:
elixir-version: 1.15
otp-version: 26
- name: Retrieve mix dependencies cache
uses: actions/cache@v3
id: mix-cache
with:
path: |
deps
_build
key: test-ubuntu-22.04-26-1.15-${{ hashFiles('**/mix.lock') }}
restore-keys: test-ubuntu-22.04-26-1.15-
- name: Install Dependencies
if: steps.mix-cache.outputs.cache-hit != 'true'
run: |
mix deps.get
mix deps.compile
- name: Compile project
run: mix compile
- name: Build release
run: |
mix hex.build -o ./release
- name: Upload Release Asset
uses: softprops/action-gh-release@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
upload_url: ${{ needs.release.outputs.upload_url }}
asset_path: ./release
asset_name: mixpanel-api-ex-${{ github.ref_name }}.tar
asset_content_type: application/x-tar