Skip to content

BKP: this commit will be amended/erased/rewritten #3

BKP: this commit will be amended/erased/rewritten

BKP: this commit will be amended/erased/rewritten #3

Workflow file for this run

name: Dummy Action
on:
pull_request:
branches: ["master"]
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: check-artifact-exists
uses: LIT-Protocol/artifact-exists-action@v0
with:
name: master_sha
- if: ${{steps.check-artifact-exists.outputs.exists}}
name: dowload-art
uses: actions/download-artifact@v4
with:
name: master_sha
path: master_sha.txt
run: |
value=`cat master_sha.txt'
echo "result: $value"
- if: !${{steps.check-artifact-exists.outputs.exists}}

Check failure on line 26 in .github/workflows/sample-action.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/sample-action.yml

Invalid workflow file

You have an error in your yaml syntax on line 26
run: echo "no artifact stored"