Skip to content

Commit

Permalink
ci: update ci rc2
Browse files Browse the repository at this point in the history
Signed-off-by: nathaelbonnal <[email protected]>
  • Loading branch information
NathaelB committed Dec 8, 2024
1 parent 6a55eef commit 648d46a
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
6 changes: 5 additions & 1 deletion .github/workflows/dev-ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -23,11 +23,15 @@ jobs:
- uses: actions/checkout@v4
- name: Set short git commit SHA
id: extract-version
run: echo "VERSION=$(echo git rev-parse --short ${{ github.sha }})" >> $GITHUB_OUTPUT
run: |
echo ${{ github.sha }}
VERSION=$(git rev-parse --short ${{ github.sha }})
echo "VERSION=$VERSION" >> $GITHUB_OUTPUT
- name: Confirm git commit SHA output
run: echo ${{ steps.extract-version.outputs.VERSION }}
test:
runs-on: ubuntu-latest
if: ${{ !github.event.act }}
services:
postgres:
image: postgres:16
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "api",
"version": "0.0.1-rc1",
"version": "0.0.1-rc2",
"private": true,
"type": "module",
"license": "UNLICENSED",
Expand Down

0 comments on commit 648d46a

Please sign in to comment.