Skip to content

Commit

Permalink
lowercase; also use quotes
Browse files Browse the repository at this point in the history
  • Loading branch information
chrisfenner committed Sep 10, 2024
1 parent 31ce241 commit 4f19815
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/pr.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: PR
name: pull_request

on:
pull_request:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/push.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Build and publish the container and use it to render the PDF for pushes to main.
name: Push
name: push

on:
push:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Build, publish, and tag the container and use it to render the PDF for releases.
name: build and publish
name: release

on:
release:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/render.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# Reusable workflow to render the spec for a variety of purposes.
# https://docs.github.com/en/actions/using-workflows/reusing-workflows

name: Render Markdown
name: render

on:
workflow_call:
Expand Down Expand Up @@ -42,7 +42,7 @@ jobs:
id: gen_output_name
run: |
filename=$(basename ${{ inputs.input }})
echo OUTPUT_FILENAME="${filename%.*}" >> $GITHUB_OUTPUT"
echo OUTPUT_FILENAME="${filename%.*}" >> "$GITHUB_OUTPUT"
# Cache the LaTeX files. Use input file and container version in the cache
# key so that the cache is invalidated upon file change or container
Expand Down

0 comments on commit 4f19815

Please sign in to comment.