Skip to content

Commit

Permalink
Wrong var name
Browse files Browse the repository at this point in the history
  • Loading branch information
lazerwalker committed Apr 28, 2021
1 parent 806d78a commit 3cf4136
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -107,6 +107,7 @@ jobs:
repo: context.repo.repo,
ref: `tags/${context.runNumber}.0.0`
})
console.log("Found!")
console.log(result)
return true
} catch(e) {
Expand All @@ -117,7 +118,7 @@ jobs:
# TODO: The previous GH script should just create the tag if needed
- name: Create tag if needed
uses: negz/create-tag@v1
if: ${{ !steps.automatedTagExists.outputs.result && !startsWith(github.ref, 'refs/tags/v') }}
if: ${{ !steps.autogeneratedTagExists.outputs.result && !startsWith(github.ref, 'refs/tags/v') }}
with:
version: ${{ format('{0}.0.0', github.run_number) }}
message: Auto-generated by GitHub Actions
Expand Down

0 comments on commit 3cf4136

Please sign in to comment.