Skip to content

Commit

Permalink
Fixes paths in workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
catusf authored Dec 2, 2024
1 parent d08e6f4 commit 38a0a48
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/release_all.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@ on:
- bin/create_inflections.py

env:
INPUT_DIR: ./dict
OUTPUT_DIR: ./output
INPUT_DIR: dict
OUTPUT_DIR: output

concurrency:
group: ${{ github.ref }}
Expand Down Expand Up @@ -75,7 +75,7 @@ jobs:
id: create_release
uses: ncipollo/release-action@v1
with:
artifacts: "{{ OUTPUT_DIR }}/*.*,{{ INPUT_DIR }}/dict_summary.md"
artifacts: "output/*.*,dict/dict_summary.md"
body: If you can read this, we have forgotten to fill in the changelog. Sorry!
token: ${{ secrets.GITHUB_TOKEN }}
tag: ${{ github.ref }}
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/release_all_external.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@ on:
- .github/workflows/release_all.yml

env:
INPUT_DIR: ./ext-dict
OUTPUT_DIR: ./ext-output
INPUT_DIR: ext-dict
OUTPUT_DIR: ext-output

concurrency:
group: ${{ github.ref }}
Expand Down Expand Up @@ -81,7 +81,7 @@ jobs:
id: create_release
uses: ncipollo/release-action@v1
with:
artifacts: "{{ OUTPUT_DIR }}/*.*,{{ INPUT_DIR }}/dict_summary.md"
artifacts: "ext-output/*.*,ext-dict/dict_summary.md"
body: If you can read this, we have forgotten to fill in the changelog. Sorry!
token: ${{ secrets.GITHUB_TOKEN }}
tag: ${{ github.ref }}
Expand Down

0 comments on commit 38a0a48

Please sign in to comment.