We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 161686d commit 45eeaacCopy full SHA for 45eeaac
.github/actions/upload/action.yml
@@ -43,3 +43,11 @@ runs:
43
working-directory: ${{ runner.temp }}/shadow_build_dir/${{ inputs.source }}
44
run: aws s3 cp ${{ inputs.artifact_name }} s3://qgroundcontrol/latest/${{ inputs.artifact_name }} --acl public-read
45
shell: bash
46
+
47
+ - name: Create Continuous Release
48
+ if: ${{ github.event_name != 'pull_request' && github.ref_name == 'master' && !github.event.pull_request.head.repo.fork }}
49
+ uses: softprops/action-gh-release@v2
50
+ with:
51
+ prerelease: true
52
+ files: |
53
+ ${{ runner.temp }}/shadow_build_dir/${{ inputs.source }}/${{ inputs.artifact_name }}
0 commit comments