Skip to content

Commit

Permalink
Fix typo in 'outputs'
Browse files Browse the repository at this point in the history
  • Loading branch information
kelvinqian00 committed Jan 18, 2024
1 parent 21140f2 commit c5ea05e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,10 +20,10 @@ jobs:
run: echo version=${GITHUB_REF#refs\/tags\/v} >> $GITHUB_OUTPUT

- name: Build JAR
run: make build VERSION=${{ steps.version.output.version }} GITHUB_SHA=${{ github.sha }}
run: make build VERSION=${{ steps.version.outputs.version }} GITHUB_SHA=${{ github.sha }}

- name: Deploy to Clojars
run: make deploy VERSION=${{ steps.version.output.version }}
run: make deploy VERSION=${{ steps.version.outputs.version }}
env:
CLOJARS_USERNAME: ${{ secrets.CLOJARS_USERNAME }}
CLOJARS_PASSWORD: ${{ secrets.CLOJARS_DEPLOY_TOKEN }}

0 comments on commit c5ea05e

Please sign in to comment.