Skip to content

Commit

Permalink
Merge pull request #4 from mitch1009/fix-tags
Browse files Browse the repository at this point in the history
Fix-tags
  • Loading branch information
mitch1009 authored May 4, 2024
2 parents e2eb559 + be574d4 commit 3fc058a
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 3 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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: |
Expand Down
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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/[email protected]@0.0.3) (2024-05-04)
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": "nextee",
"version": "0.0.3",
"version": "0.0.4",
"private": true,
"scripts": {
"dev": "next dev --port 7766",
Expand Down

0 comments on commit 3fc058a

Please sign in to comment.