Nightly Release #208
This file contains hidden or 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: Nightly Release | ||
| on: | ||
| workflow_dispatch: # push disabled — re-enable when nightly is ready | ||
| # push: | ||
| # branches: | ||
| # - main | ||
| permissions: | ||
| contents: read | ||
| jobs: | ||
| delete_tag: | ||
| permissions: | ||
| contents: write | ||
| runs-on: cx-public-ubuntu-x64 | ||
| steps: | ||
| - name: Delete release and tag | ||
| env: | ||
| GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
| run: | | ||
| gh release delete "1.0.0-SNAPSHOT" --yes --cleanup-tag --repo ${{ github.repository }} || true | ||
| nightly: | ||
|
Check failure on line 24 in .github/workflows/nightly.yml
|
||
| needs: delete_tag | ||
| uses: ./.github/workflows/release.yml | ||
| with: | ||
| tag: "1.0.0-SNAPSHOT" | ||
| dev: true | ||
| cliTag: "2.0.0-nightly" | ||
| secrets: | ||
| MAVEN_GPG_PASSPHRASE: ${{ secrets.MAVEN_GPG_PASSPHRASE }} | ||
| MAVEN_GPG_PRIVATE_KEY: ${{ secrets.MAVEN_GPG_PRIVATE_KEY }} | ||
| OSSRH_TOKEN: ${{ secrets.OSSRH_TOKEN }} | ||
| OSSRH_USERNAME: ${{ secrets.OSSRH_USERNAME }} | ||