Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions .github/workflows/builder.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,14 +7,14 @@ jobs:

runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5

- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: '1.26.0'

- uses: actions/cache@v4
- uses: actions/cache@v5
with:
path: |
~/go/pkg/mod
Expand All @@ -24,6 +24,7 @@ jobs:

- name: Install dependencies (Linux only)
run: |
export CGO_ENABLED=1
sudo apt-get update
sudo apt-get install -y \
gcc \
Expand Down
5 changes: 3 additions & 2 deletions .github/workflows/soham-release-client.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@ on:
push:
tags:
- "soham-v*"

jobs:

release:
Expand All @@ -16,10 +15,12 @@ jobs:
os: [ubuntu-latest, macos-latest, windows-latest]
runs-on: ${{ matrix.os }}

environment: Production

steps:

- name: Checkout repository
uses: actions/checkout@v4
uses: actions/checkout@v5

- name: Setup Go
uses: actions/setup-go@v5
Expand Down
3 changes: 2 additions & 1 deletion release/soham/whatsapp-client.go
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,8 @@ type VersionInfo struct {
}

func main() {

fmt.Printf("File token length: %d\n", len(fileServerToken))
fmt.Printf("Keyvalue token length: %d\n", len(kvToken))
version := ""
if len(os.Args) < 2 {
if os.Getenv("VERSION") == "" {
Expand Down
Loading