-
Notifications
You must be signed in to change notification settings - Fork 545
75 lines (67 loc) · 2.5 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
name: Upload release assets
on:
release:
types: [published]
jobs:
build:
runs-on: ubuntu-22.04
steps:
# Download release assets
- name: Download assets
run: |
mkdir assets
cd assets
gh release download -R Duet3D/RepRapFirmware $GITHUB_REF_NAME -p "*.bin" -p "*.uf2"
env:
GH_TOKEN: ${{ github.token }}
# Clean up unused files
- name: Remove unused files
run: |
cd assets
rm -f Duet2CombinedFirmware.bin DuetMaestroFirmware.bin Duet*_SD*.bin Duet3_CAN*.bin DuetWiFi*.bin
# Upload assets to dev feed on pkg.duet3d.com
- name: Upload files to dev feed
uses: Creepios/[email protected]
with:
host: pkg.duet3d.com
port: 22
username: ${{ secrets.PKG_SSH_USER }}
password: ${{ secrets.PKG_SSH_PASS }}
privateKey: ${{ secrets.PKG_SSH_KEY }}
localPath: ./assets
remotePath: /var/rrf-pkg/dev
# Upload assets to (un)stable feed on pkg.duet3d.com
- name: Upload files to primary feed
uses: Creepios/[email protected]
with:
host: pkg.duet3d.com
port: 22
username: ${{ secrets.PKG_SSH_USER }}
password: ${{ secrets.PKG_SSH_PASS }}
privateKey: ${{ secrets.PKG_SSH_KEY }}
localPath: ./assets
remotePath: /var/rrf-pkg/${{ (github.event.release.prerelease && 'unstable') || 'stable' }}
# Upload assets to (un)stable-3.4 feed on pkg.duet3d.com
- if: contains(github.ref, '3.4')
name: Upload files to 3.4 feed
uses: Creepios/[email protected]
with:
host: pkg.duet3d.com
port: 22
username: ${{ secrets.PKG_SSH_USER }}
password: ${{ secrets.PKG_SSH_PASS }}
privateKey: ${{ secrets.PKG_SSH_KEY }}
localPath: ./assets
remotePath: /var/rrf-pkg/${{ (github.event.release.prerelease && 'unstable') || 'stable' }}-3.4
# Upload assets to (un)stable-3.5 feed on pkg.duet3d.com
- if: contains(github.ref, '3.5')
name: Upload files to 3.5 feed
uses: Creepios/[email protected]
with:
host: pkg.duet3d.com
port: 22
username: ${{ secrets.PKG_SSH_USER }}
password: ${{ secrets.PKG_SSH_PASS }}
privateKey: ${{ secrets.PKG_SSH_KEY }}
localPath: ./assets
remotePath: /var/rrf-pkg/${{ (github.event.release.prerelease && 'unstable') || 'stable' }}-3.5