Merge pull request #1045 from 7Cav/Extend-the-Range-of-rearm-and-refu… #35
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
name: Deploy DevBuild Artifacts | |
on: | |
push: | |
branches: | |
- main | |
jobs: | |
build: | |
name: Create And Upload Release | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@master | |
- name: Build releases | |
run: ./tools/deploy.sh DevBuild-$(git rev-parse --short HEAD) | |
- name: Upload releases | |
uses: actions/upload-artifact@v3 | |
with: | |
name: Releases | |
path: release/* |