Skip to content

change if conditions #2

change if conditions

change if conditions #2

Workflow file for this run

name: Test artifact action
on: [push]
jobs:
custom_test:
runs-on: ubuntu-latest
name: Test Dataverse Action
env:
PORT: 8080
steps:
- name: "Checkout"
uses: "actions/checkout@v4"
- name: Run Dataverse Action
id: dataverse
uses: ./
with:
image_tag: "burritohasbeeneaten"
postgresql_version: 15
jvm_options: |
dataverse.api.signature-secret=eikaizieb2Oghaex
dataverse.pid.datacite.rest-api-url=https://api.datacite.org
- name: Check artifact
id: artifact-check
if: steps.dataverse.outcome == 'failure'
uses: xSAVIKx/artifact-exists-action@v0
with:
name: "logs.tgz"
- name: Set GitHub Action as success if "dataverse" has failed
if: steps.artifact-check.outcome == 'success'
run: exit 0