ci(deps): update danysk/action-checkout action to v0.2.22 #1630
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: CI | |
on: | |
push: | |
tags: '*' | |
branches-ignore: | |
- 'autodelivery**' | |
- 'bump-**' | |
- 'renovate/**' | |
paths-ignore: | |
- 'CHANGELOG.md' | |
- 'LICENSE' | |
- 'README.md' | |
- 'renovate.json' | |
pull_request: | |
workflow_dispatch: | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.event.number || github.ref }} | |
cancel-in-progress: true | |
jobs: | |
check-simulations-multiplatform: | |
strategy: | |
fail-fast: false | |
matrix: | |
os: [windows, macos, ubuntu] | |
runs-on: ${{ matrix.os }}-latest | |
steps: | |
- name: Checkout | |
uses: DanySK/[email protected] | |
- uses: DanySK/[email protected] | |
with: | |
build-command: true | |
check-command: ./gradlew runAll --stacktrace | |
should-run-codecov: false | |
should-deploy: false | |
build-image: | |
needs: | |
- check-simulations-multiplatform | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/[email protected] | |
- name: Build Image | |
run: | | |
IMAGE_NAME='danysk/alchemist-sapere-tutorial' | |
echo docker build -t "$IMAGE_NAME:latest" . | |
docker build -t "$IMAGE_NAME:latest" . | |
- name: Create Release | |
if: >- | |
github.event_name != 'pull_request' | |
&& github.repository == 'AlchemistSimulator/SAPERE-incarnation-tutorial' | |
env: | |
GITHUB_TOKEN: ${{ github.token }} | |
DOCKER_PASSWORD: ${{ secrets.DOCKER_PASSWORD }} | |
DOCKER_USERNAME: danysk | |
run: | | |
npm install | |
npx semantic-release --debug | |
success: | |
runs-on: ubuntu-24.04 | |
needs: | |
- check-simulations-multiplatform | |
- build-image | |
if: >- | |
always() && ( | |
contains(join(needs.*.result, ','), 'failure') | |
|| !contains(join(needs.*.result, ','), 'cancelled') | |
) | |
steps: | |
- name: Verify that there were no failures | |
run: ${{ !contains(join(needs.*.result, ','), 'failure') }} |