-
Notifications
You must be signed in to change notification settings - Fork 547
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch '3.5-dev' into outgoing_connections
- Loading branch information
Showing
207 changed files
with
5,494 additions
and
4,680 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,49 @@ | ||
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' }} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
eclipse.preferences.version=1 | ||
line.separator=\n |
Binary file not shown.
Binary file not shown.
Binary file not shown.
This file was deleted.
Oops, something went wrong.
Binary file not shown.
Binary file not shown.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.