fix: add nil check for device in whatsapp init #87
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Release Windows Version | |
on: | |
workflow_dispatch: | |
push: | |
tags: | |
- 'v[0-9]+.[0-9]+.[0-9]+' | |
branches-ignore: | |
- '*' | |
jobs: | |
release-windows: | |
if: startsWith(github.ref, 'refs/tags/v') | |
runs-on: windows-latest | |
environment: production | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Golang Installation | |
uses: actions/setup-go@v5 | |
with: | |
go-version: '1.23' | |
- name: Golang build | |
run: | | |
cd src && go build -o windows-amd64.exe | |
- name: Deploy artifact to release ${{ github.ref_name }} | |
uses: AButler/[email protected] | |
with: | |
files: 'src/windows-amd64.exe' | |
repo-token: ${{ secrets.GITHUB_TOKEN }} | |
release-tag: ${{ github.ref_name }} |