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 6e73d9a commit 9f98e23Copy full SHA for 9f98e23
.github/workflows/build.yml
@@ -27,12 +27,23 @@ jobs:
27
java-version: 11
28
- name: Build with Gradle
29
run: ./gradlew nativeCompile
30
-
+ - uses: actions/upload-artifact@master
31
+ with:
32
+ name: executable
33
+ path: build/native/nativeCompile/gh-echo*
34
+
35
+ publish:
36
+ runs-on: ubuntu-latest
37
+ needs: build
38
+ steps:
39
+ - uses: actions/download-artifact@master
40
41
42
- uses: "marvinpinto/action-automatic-releases@latest"
43
with:
44
repo_token: "${{ secrets.GITHUB_TOKEN }}"
45
automatic_release_tag: "latest"
- prerelease: true
- title: "Development Build"
- files: |
- build/native/nativeCompile/gh-echo*
46
+ prerelease: false
47
+ title: {{ github.ref_name }}
48
+ files: 'gh-echo*'
49
0 commit comments