[Backport jb-v7.6.x] fix(deep-cody): missing experimental badge on mo… #11
Workflow file for this run
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: Nightly Release | |
on: | |
push: | |
tags: [ "jb-*-nightly" ] | |
jobs: | |
publish: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: 20 | |
- uses: actions/setup-java@v4 | |
with: | |
distribution: temurin | |
java-version: 17 | |
cache: gradle | |
# See note about QEMU and binfmt requirement here https://github.com/vercel/pkg#targets | |
- name: Set up QEMU | |
id: qemu | |
uses: docker/setup-qemu-action@v3 | |
with: | |
image: tonistiigi/binfmt:latest | |
platforms: all | |
- name: Gradle Wrapper Validation | |
uses: gradle/wrapper-validation-action@v3 | |
- uses: pnpm/action-setup@fe02b34f77f8bc703788d5817da081398fad5dd2 # SECURITY: pin third-party action hashes | |
- run: | | |
echo "RELEASE_VERSION=$(./jetbrains/scripts/version-from-git-tag.sh)-nightly" >> $GITHUB_ENV | |
- name: Publish nightly version | |
run: | | |
echo "Publishing nightly version ${RELEASE_VERSION}" | |
pushd jetbrains | |
./gradlew "-PpluginVersion=${RELEASE_VERSION}" publishPlugin | |
popd > /dev/null | |
env: | |
PUBLISH_TOKEN: ${{ secrets.JETBRAINS_MARKETPLACE_PUBLISH_TOKEN }} |