Skip to content

Commit 65eaef8

Browse files
committed
fixup!
1 parent cd42fa9 commit 65eaef8

1 file changed

Lines changed: 4 additions & 8 deletions

File tree

.github/workflows/create-meeting-artifacts-manual.yml

Lines changed: 4 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -58,20 +58,16 @@ jobs:
5858
GITHUB_TOKEN: ${{ steps.app-token.outputs.token }}
5959
HACKMD_API_TOKEN: ${{ secrets.HACKMD_API_TOKEN }}
6060
GOOGLE_API_KEY: ${{ secrets.GOOGLE_API_KEY }}
61-
run: |
62-
args="${{ inputs.meeting_group }} --verbose"
63-
if [ "${{ inputs.dry_run }}" = "true" ]; then
64-
args="$args --dry-run"
65-
fi
66-
node create-node-meeting-artifacts.mjs $args
61+
ADDITIONAL_ARGS: ${{ inputs.dry_run == 'true' && '--dry-run' || '' }}
62+
run: node create-node-meeting-artifacts.mjs ${{ inputs.meeting_group }} --verbose $ADDITIONAL_ARGS
6763

6864
- name: Upload artifacts
6965
if: always()
7066
uses: actions/upload-artifact@50769540e7f4bd5e21e526ee35c689e35e0d6874 # v4.4.0
7167
with:
72-
name: meeting-artifacts-${{ inputs.meeting_group }}
68+
name: meeting-artifacts-${{ inputs.meeting_group || 'tsc' }}
7369
path: |
7470
~/.make-node-meeting/
7571
*.md
7672
retention-days: 7
77-
if-no-files-found: ignore
73+
if-no-files-found: ignore

0 commit comments

Comments
 (0)