Skip to content

Commit

Permalink
Fix syntax
Browse files Browse the repository at this point in the history
  • Loading branch information
jedekar committed Nov 20, 2023
1 parent 07a5b44 commit e5d6e31
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions .github/workflows/github-nightly.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -25,15 +25,14 @@ jobs:
- name: Checkout code
uses: actions/checkout@v3
with:
ref: $DEVELOPMENT_BRANCH
ref: ${{ env.DEVELOPMENT_BRANCH }}

- name: Draft release
id: draft_release
uses: ncipollo/[email protected]
env:
GITHUB_TOKEN: ${{ secrets.BUILD_TOKEN_EPHEMERAL}}
with:
tag: ${{ needs.setup.outputs.tag }}
name: "Nightly Build"
draft: true
body: "Latest build of the development branch"
Expand All @@ -42,11 +41,11 @@ jobs:
name: Lint
uses: ./.github/workflows/lint.yaml
with:
ref: $DEVELOPMENT_BRANCH
ref: ${{ env.DEVELOPMENT_BRANCH }}

build_and_test:
needs: [lint, draft_release]
name: Build and test
uses: ./.github/workflows/build.yaml
with:
ref: $DEVELOPMENT_BRANCH
ref: ${{ env.DEVELOPMENT_BRANCH }}

0 comments on commit e5d6e31

Please sign in to comment.