MET-6412 Setting path for http-jobs directory in github action config… #150
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: CI | |
on: push | |
jobs: | |
ci: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Set METIS_PROCESSING_HTTP_JOBS_DIR env var | |
run: | | |
echo "METIS_PROCESSING_HTTP_JOBS_DIR=$RUNNER_TEMP/http-jobs" >> $GITHUB_ENV | |
mkdir -p "$RUNNER_TEMP/http-jobs" | |
- name: Install media software | |
uses: europeana/metis-actions/actions/media-software-install-steps@main | |
- name: Build code and Sonar Analyze | |
uses: europeana/metis-actions/actions/build-analyze@main | |
with: | |
sonar_organization: europeana | |
sonar_project_key: europeana_metis-processing-engine | |
sonar_token: ${{ secrets.METIS_SONAR_TOKEN }} | |
github_token: ${{ secrets.GITHUB_TOKEN }} | |
- name: Upload all jars to target-jars | |
uses: europeana/metis-actions/actions/upload-target-jars@main |