feat: basic linux version (#4) #15
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
on: | |
push: | |
branches: | |
- master | |
- linux | |
jobs: | |
version: | |
runs-on: ubuntu-latest | |
env: | |
MAJOR_VERSION: 0 | |
outputs: | |
versionSemVerOut: v${{ steps.semVer.outputs.semVersion }} | |
rawVerOut: ${{ steps.semVer.outputs.semVersion }} | |
steps: | |
- id: semVer | |
run: echo "semVersion=$MAJOR_VERSION.0.${{ github.run_number }}" >> "$GITHUB_OUTPUT" | |
- id: raw | |
run: echo "rawVerOut=$MAJOR_VERSION.0.${{ github.run_number }}" >> "$GITHUB_OUTPUT" | |
ci: | |
runs-on: ubuntu-latest | |
container: golang:1.23-bookworm | |
needs: | |
- version | |
env: | |
SEM_VERSION: ${{needs.version.outputs.versionSemVerOut}} | |
RAW_VERSION: ${{needs.version.outputs.rawVerOut}} | |
steps: | |
- name: Install zip | |
uses: montudor/action-zip@v1 | |
- run: apt-get update && apt-get install -y build-essential git | |
- uses: actions/checkout@v4 | |
- run: make build | |
- name: Create deb package | |
run: cd ci && bash ./deb.sh | |
- uses: montudor/action-zip@v1 | |
with: | |
args: zip -qq -r browser-switcher-${{ env.SEM_VERSION }}-windows-amd64.zip . | |
working-directory: dist/win/ | |
- name: release | |
uses: actions/create-release@v1 | |
id: create_release | |
with: | |
draft: false | |
prerelease: false | |
release_name: ${{ env.SEM_VERSION }} | |
tag_name: ${{ env.SEM_VERSION }} | |
env: | |
GITHUB_TOKEN: ${{ github.token }} | |
- name: upload linux artifact | |
uses: actions/upload-release-asset@v1 | |
env: | |
GITHUB_TOKEN: ${{ github.token }} | |
with: | |
upload_url: ${{ steps.create_release.outputs.upload_url }} | |
asset_path: ci/browser-switcher_${{ env.RAW_VERSION }}.deb | |
asset_name: browser-switcher_${{ env.RAW_VERSION }}.deb | |
asset_content_type: application/octet-stream | |
- name: upload windows artifact | |
uses: actions/upload-release-asset@v1 | |
env: | |
GITHUB_TOKEN: ${{ github.token }} | |
with: | |
upload_url: ${{ steps.create_release.outputs.upload_url }} | |
asset_path: browser-switcher-${{ env.SEM_VERSION }}-windows-amd64.zip | |
asset_name: browser-switcher-${{ env.SEM_VERSION }}-windows-amd64.zip | |
asset_content_type: application/octet-stream |