Skip to content
This repository has been archived by the owner on Sep 5, 2024. It is now read-only.

Bump actions/download-artifact from 4.1.4 to 4.1.7 in /.github/workflows #45

Bump actions/download-artifact from 4.1.4 to 4.1.7 in /.github/workflows

Bump actions/download-artifact from 4.1.4 to 4.1.7 in /.github/workflows #45

Workflow file for this run

name: Pull Request
on:
pull_request:
branches: [main]
concurrency:
group: process-pr-${{github.event.number}}
cancel-in-progress: true
jobs:
process-pr:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/[email protected]
- name: Setup Java JDK
uses: actions/[email protected]
with:
distribution: temurin
java-version: 21
- name: Process
run: |
mkdir -p artifact
echo ${{github.event.number}} > artifact/pr.txt
set +e
bash tools/build.sh process
EXIT_CODE=$?
cat "out/message.txt" 1> artifact/message.txt
[ -s artifact/message.txt ] || {
echo -e "Seems like there are no changes in jetbrains.runtime.api." > artifact/message.txt
}
exit $EXIT_CODE
- name: Upload artifact
if: always()
uses: actions/[email protected]
with:
name: process
path: artifact/