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 7842080 commit f4853c4Copy full SHA for f4853c4
.github/workflows/maven.yml
@@ -133,11 +133,28 @@ jobs:
133
- name: test run-groovy
134
run: coatjava/bin/run-groovy validation/advanced-tests/test-run-groovy.groovy
135
136
+ release:
137
+ needs: [ build ]
138
+ runs-on: ubuntu-latest
139
+ steps:
140
+ - uses: actions/checkout@v4
141
+ - uses: actions/download-artifact@v4
142
+ with:
143
+ name: build_ubuntu-latest
144
+ - name: Release
145
+ uses: softprops/action-gh-release@v2
146
+ if: startsWith(github.ref, 'refs/tags/')
147
148
+ files: coatjava.tar.gz
149
+ env:
150
+ GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
151
+
152
final:
153
needs:
154
- build
155
- test_coatjava
156
- test_run-groovy
157
+ - release
158
runs-on: ubuntu-latest
159
steps:
160
- name: pass
0 commit comments