Skip to content

Commit bad27dd

Browse files
committed
udpate
1 parent 8d0bd55 commit bad27dd

2 files changed

Lines changed: 5 additions & 8 deletions

File tree

.github/workflows/build.yaml

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -39,16 +39,12 @@ jobs:
3939
name: binaries
4040
path: build/*.tar.gz
4141

42-
- name: Generate Release Tag
43-
id: generate_tag
44-
run: echo "RELEASE_TAG=$(date +'%d-%m-%Y')" >> $GITHUB_ENV
45-
4642
- name: Create GitHub Release
4743
uses: ncipollo/release-action@v1
4844
with:
4945
token: ${{ secrets.GITHUB_TOKEN }}
50-
tag: ${{ env.RELEASE_TAG }}
51-
name: "Release ${{ env.RELEASE_TAG }}"
46+
tag: "v1.0.${{ github.run_number }}"
47+
name: "Release v1.0.${{ github.run_number }}"
5248
draft: true
5349
artifacts: |
5450
build/ssh-app-linux-amd64.tar.gz

main.go

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -174,10 +174,11 @@ I'm fluent in Scala, Python, Go, and, Typescript. Can work with C.
174174

175175
choices := fmt.Sprintf(
176176
"%s\n%s\n%s\n%s",
177-
m.subtleStyle.Copy().Foreground(lipgloss.Color("222")).Render("Resume / CV https://nakul.one/resume"),
178177
m.subtleStyle.Copy().Foreground(lipgloss.Color("13")).Render("GitHub https://github.com/Spitfire1970"),
179178
m.subtleStyle.Copy().Foreground(lipgloss.Color("33")).Render("Linkedin https://linkedin.com/in/nakul404"),
180-
m.subtleStyle.Copy().Foreground(lipgloss.Color("39")).Render("CP https://leetcode.com/u/Spitfire1970/"),
179+
m.subtleStyle.Copy().Foreground(lipgloss.Color("39")).Render("CP https://leetcode.com/u/Spitfire1970/"),
180+
m.subtleStyle.Copy().Foreground(lipgloss.Color("222")).Render("Clicky stuff https://linktr.ee/nakul_goyal"),
181+
181182
)
182183

183184
s := fmt.Sprintf("%s\n\n%s\n\n%s", about, choices, tpl)

0 commit comments

Comments
 (0)