generated from holaplex/hub-starter
-
Notifications
You must be signed in to change notification settings - Fork 0
82 lines (73 loc) · 2.17 KB
/
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
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
79
80
81
82
name: Release
on:
push:
branches:
- main
- release
jobs:
build:
strategy:
fail-fast: false
matrix:
target:
- x86_64-unknown-linux-musl
include:
- target: x86_64-unknown-linux-musl
os: ubuntu-latest
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v2
- name: Prepare env
run: |
cat << EOF > .env
DATABASE_URL=postgres://postgres:holaplex@localhost:5432/hub-starter
POSTGRES_DB=hub-starter
POSTGRES_USER=postgres
POSTGRES_PASSWORD=holaplex
EOF
- uses: isbang/[email protected]
name: Start Postgres with docker-compose
with:
compose-file: ./docker-compose.yaml
- name: Install packages and run migrations
run: |
npm install
npm run migrate
- name: Build Linux
if: matrix.os == 'ubuntu-latest'
run: |
export $(xargs < .env)
cp holaplex.graphql ./scripts/airdrop && cd scripts/airdrop
docker run --network host --rm -t \
-e DATABASE_URL=$DATABASE_URL \
-v $HOME/.cargo/registry/:/root/.cargo/registry \
-v "$(pwd)":/volume \
clux/muslrust:stable \
cargo build --release --target ${{ matrix.target }}
- name: Upload
uses: actions/upload-artifact@v2
with:
name: airdrop-${{ matrix.os }}-amd64
path: ./scripts/airdrop/target/${{ matrix.target }}/release/airdrop
if-no-files-found: error
release:
needs: build
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Download
uses: actions/download-artifact@v2
- name: Layout
run: |
mv airdrop-ubuntu-latest-amd64/airdrop ./airdrop-linux-amd64
rm -rf airdrop-ubuntu-latest-amd64
- name: Release
uses: softprops/action-gh-release@v1
env:
GITHUB_TOKEN: ${{ secrets.ACTIONS_TOKEN }}
with:
generate_release_notes: true
draft: true
fail_on_unmatched_files: true
files: |
airdrop-linux-amd64