File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff 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
You can’t perform that action at this time.
0 commit comments