forked from saltysimulations/salty-747
-
Notifications
You must be signed in to change notification settings - Fork 0
95 lines (94 loc) · 4.02 KB
/
dev.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
83
84
85
86
87
88
89
90
91
92
93
94
95
name: dev
on:
push:
branches:
- master
jobs:
build:
# Prevent running this on forks
if: github.repository_owner == 'saltysimulations'
runs-on: ubuntu-latest
env:
SALTY_PRODUCTION_BUILD: 1
MASTER_PRE_RELEASE_ID: 42630416
MASTER_PRE_RELEASE_TAG: vdev
MASTER_ZIP_NAME: salty-747-dev.zip
INSTALLER_PRE_RELEASE_ID: 64499039
INSTALLER_PRE_RELEASE_TAG: vinstaller
BUILD_DIR_NAME: vdev
steps:
- name: Checkout source
uses: actions/checkout@v2
- name: Set BUILT_DATE_TIME
run: echo "BUILT_DATE_TIME=$(date -u -Iseconds)" >> $GITHUB_ENV
- name: Build Salty-747
uses: actions/setup-node@v1
with:
node-version: 14
- run: |
npm i
npm run build
npm run fragment
- run: ls -R
- name: Build ZIP files
run: |
mkdir ./${{ env.BUILD_DIR_NAME }}
zip -r ./${{ env.BUILD_DIR_NAME }}/${{ env.MASTER_ZIP_NAME }} ./salty-747/
- name: Get and delete master pre-release zip asset
run: |
echo 'checking for first release asset...'
assets=$( \
curl --location --request GET \
--url https://api.github.com/repos/${{ github.repository }}/releases/${{ env.MASTER_PRE_RELEASE_ID }}/assets
)
if [ $(echo $assets | jq '.[0].size') -eq '0' ]; then
echo 'no asset to delete'
else
assetId=$(echo $assets | jq '.[0].id')
echo 'deleting asset '$assetId
curl --request DELETE \
--url https://api.github.com/repos/${{ github.repository }}/releases/assets/$assetId \
--header 'authorization: Bearer ${{ secrets.GITHUB_TOKEN }}'
fi
- name: Upload release binary
uses: actions/upload-release-asset@v1.0.2
env:
GITHUB_TOKEN: ${{ github.token }}
with:
upload_url: https://uploads.github.com/repos/${{ github.repository }}/releases/${{ env.MASTER_PRE_RELEASE_ID }}/assets{?name,label}
asset_path: ./${{ env.BUILD_DIR_NAME }}/${{ env.MASTER_ZIP_NAME }}
asset_name: ${{ env.MASTER_ZIP_NAME }}
asset_content_type: application/zip
- name: Update master pre-release body
run: |
curl --request PATCH \
--url 'https://api.github.com/repos/${{ github.repository }}/releases/${{ env.MASTER_PRE_RELEASE_ID }}' \
--header 'authorization: Bearer ${{ secrets.GITHUB_TOKEN }}' \
--header 'Content-Type: application/json' \
--data-raw '{
"body": "This pre-release has its ${{ env.MASTER_ZIP_NAME }} asset updated on every commit to the master branch\nLast updated on ${{ env.BUILT_DATE_TIME }} from commit ${{ github.sha }}\nThis link will always point to the latest master build: https://github.com/${{ github.repository }}/releases/download/${{ env.MASTER_PRE_RELEASE_TAG }}/${{ env.MASTER_ZIP_NAME }}"
}'
- name: Get and delete installer pre-release zip assets
run: |
echo 'checking for first release asset...'
assets=$( \
curl --location --request GET \
--url https://api.github.com/repos/${{ github.repository }}/releases/${{ env.INSTALLER_PRE_RELEASE_ID }}/assets
)
if [ $(echo $assets | jq '.[0].size') -eq '0' ]; then
echo 'no asset to delete'
else
echo $assets | jq -c '.[]' | while read -r row
do
assetId=$(echo $row | jq '.id')
echo 'deleting asset '$assetId
curl --request DELETE \
--url https://api.github.com/repos/${{ github.repository }}/releases/assets/$assetId \
--header 'authorization: Bearer ${{ secrets.GITHUB_TOKEN }}'
done
fi
- name: Upload installer zip assets
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: |
hub release edit $(find build-modules -type f -printf "-a %p ") -m "" "${{ env.INSTALLER_PRE_RELEASE_TAG }}"