Skip to content

Commit

Permalink
seeing if disabling CGO will prevent issues when using 'ubuntu-latest…
Browse files Browse the repository at this point in the history
…' runner to compile the binaries (#13)
  • Loading branch information
ehutchllew authored Apr 3, 2024
1 parent deea667 commit 7358672
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ jobs:
echo "VERSION=$VERSION" >> "$GITHUB_ENV"
- name: Build
run: go build -ldflags="-w -X 'github.com/ev-the-dev/tmplts/cmd.version=${{ env.VERSION }}'" -o bin/tmplts
run: CGO_ENABLED=0 go build -ldflags="-w -X 'github.com/ev-the-dev/tmplts/cmd.version=${{ env.VERSION }}'" -o bin/tmplts

- name: Upload Binary
uses: actions/upload-artifact@v4
Expand Down
2 changes: 1 addition & 1 deletion npm/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@ev-the-dev/tmplts",
"author": "ev-the-dev",
"version": "0.0.6",
"version": "0.0.7",
"description": "TypeScript Project Configuration Bootstrapper",
"license": "Apache-2.0",
"bin": {
Expand Down

0 comments on commit 7358672

Please sign in to comment.