Skip to content

Commit

Permalink
ci(docs): Fix website publication
Browse files Browse the repository at this point in the history
  • Loading branch information
rlemaitre committed Dec 4, 2024
1 parent 3728758 commit 82fdb44
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 8 deletions.
7 changes: 2 additions & 5 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -282,8 +282,8 @@ jobs:
uses: ncipollo/[email protected]
with:
body: ${{ steps.changelog.outputs.changes }}
name: ${{ env.nextTag }}
tag: ${{ env.nextTag }}
name: ${{ github.ref_name }}
tag: ${{ github.ref_name }}
draft: false
makeLatest: true
allowUpdates: true
Expand Down Expand Up @@ -314,9 +314,6 @@ jobs:
statuses: write
env:
DTC_HEADLESS: true
concurrency:
group: ${{ github.workflow }} @ ${{ github.ref }}
cancel-in-progress: true
steps:
- name: Checkout current branch (fast)
uses: actions/checkout@v4
Expand Down
5 changes: 2 additions & 3 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -108,8 +108,8 @@ val releasePreparation = WorkflowJob(
"allowUpdates" -> "true",
"draft" -> "false",
"makeLatest" -> "true",
"name" -> "${{ env.nextTag }}",
"tag" -> "${{ env.nextTag }}",
"name" -> "${{ github.ref_name }}",
"tag" -> "${{ github.ref_name }}",
"body" -> "${{ steps.changelog.outputs.changes }}",
"token" -> "${{ github.token }}"
)
Expand All @@ -124,7 +124,6 @@ val websitePublication = WorkflowJob(
needs = List("publish"),
env = Map("DTC_HEADLESS" -> "true"),
permissions = Some(Permissions.Specify.defaultPermissive),
concurrency = Some(Concurrency(s"$${{ github.workflow }} @ $${{ github.ref }}", Some(true))),
steps = List(
WorkflowStep.Checkout,
WorkflowStep.Run(
Expand Down

0 comments on commit 82fdb44

Please sign in to comment.