diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index f7503aa..341a6d4 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -36,8 +36,10 @@ jobs: - name: get the tag and set is as the image version id: vars run: | - echo ::set-output name=tag::${GITHUB_REF#refs/*/} - echo ${GITHUB_REF#refs/*/} + TAG=${GITHUB_REF#refs/*/} + TAG=${TAG#*@} # This line extracts the part after the '@' symbol + echo ::set-output name=tag::$TAG + echo $TAG echo "AUTH_SECRET=${AUTH_SECRET}" >.env - name: Build and push run: | diff --git a/CHANGELOG.md b/CHANGELOG.md index 5c54b11..9f42d77 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,11 @@ # Changelog +## 0.0.4 + +### Patch Changes + +- 6ccb776: fix tags extraction + All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines. ### [0.0.3](https://github.com/mitch1009/witso/compare/nextee@0.0.2...nextee@0.0.3) (2024-05-04) diff --git a/package.json b/package.json index 2d8cf7c..ad3413f 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "nextee", - "version": "0.0.3", + "version": "0.0.4", "private": true, "scripts": { "dev": "next dev --port 7766",