Skip to content

Commit

Permalink
Properly quote release name for @ literal (#1027)
Browse files Browse the repository at this point in the history
We were using `\` before, but that was ending up in the actual string,
so I thought maybe we could omit it. Nope! This should work.
  • Loading branch information
scotttrinh authored May 21, 2024
1 parent 0bf404e commit 5030017
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ jobs:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
tag_name: generate-v${{ steps.check_publish_generate.outputs.version }}
name: @edgedb/generate v${{ steps.check_publish_generate.outputs.version }}
name: "@edgedb/generate v${{ steps.check_publish_generate.outputs.version }}"
draft: true
prerelease: false

Expand Down Expand Up @@ -149,7 +149,7 @@ jobs:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
tag_name: auth-core-v${{ steps.check_publish_auth_core.outputs.version }}
name: @edgedb/auth-core v${{ steps.check_publish_auth_core.outputs.version }}
name: "@edgedb/auth-core v${{ steps.check_publish_auth_core.outputs.version }}"
draft: true
prerelease: false

Expand Down Expand Up @@ -189,7 +189,7 @@ jobs:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
tag_name: auth-nextjs-v${{ steps.check_publish_auth_nextjs.outputs.version }}
name: @edgedb/auth-nextjs v${{ steps.check_publish_auth_nextjs.outputs.version }}
name: "@edgedb/auth-nextjs v${{ steps.check_publish_auth_nextjs.outputs.version }}"
draft: true
prerelease: false

Expand Down Expand Up @@ -229,7 +229,7 @@ jobs:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
tag_name: auth-express-v${{ steps.check_publish_auth_express.outputs.version }}
name: @edgedb/auth-express v${{ steps.check_publish_auth_express.outputs.version }}
name: "@edgedb/auth-express v${{ steps.check_publish_auth_express.outputs.version }}"
draft: true
prerelease: false

Expand Down Expand Up @@ -269,7 +269,7 @@ jobs:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
tag_name: auth-remix-v${{ steps.check_publish_auth_remix.outputs.version }}
name: @edgedb/auth-remix v${{ steps.check_publish_auth_remix.outputs.version }}
name: "@edgedb/auth-remix v${{ steps.check_publish_auth_remix.outputs.version }}"
draft: true
prerelease: false

Expand Down Expand Up @@ -309,7 +309,7 @@ jobs:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
tag_name: auth-sveltekit-v${{ steps.check_publish_auth_sveltekit.outputs.version }}
name: @edgedb/auth-sveltekit v${{ steps.check_publish_auth_sveltekit.outputs.version }}
name: "@edgedb/auth-sveltekit v${{ steps.check_publish_auth_sveltekit.outputs.version }}"
draft: true
prerelease: false

Expand Down Expand Up @@ -349,7 +349,7 @@ jobs:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
tag_name: create-v${{ steps.check_publish_create.outputs.version }}
name: @edgedb/create v${{ steps.check_publish_create.outputs.version }}
name: "@edgedb/create v${{ steps.check_publish_create.outputs.version }}"
draft: true
prerelease: false

Expand Down Expand Up @@ -389,6 +389,6 @@ jobs:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
tag_name: ai-v${{ steps.check_publish_ai.outputs.version }}
name: @edgedb/ai v${{ steps.check_publish_ai.outputs.version }}
name: "@edgedb/ai v${{ steps.check_publish_ai.outputs.version }}"
draft: true
prerelease: false

0 comments on commit 5030017

Please sign in to comment.