gh token #22
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 | |
on: | |
push: | |
tags: | |
- '*' | |
jobs: | |
build-docker: | |
runs-on: ubuntu-latest | |
steps: | |
- | |
name: Checkout | |
uses: actions/checkout@v3 | |
- | |
name: Login to Docker Hub | |
uses: docker/login-action@v2 | |
with: | |
username: ${{ secrets.DOCKERHUB_USERNAME }} | |
password: ${{ secrets.DOCKERHUB_TOKEN }} | |
- | |
name: Set up Docker Buildx | |
uses: docker/setup-buildx-action@v2 | |
- | |
name: Build and push | |
uses: docker/build-push-action@v3 | |
with: | |
context: . | |
file: ./Dockerfile | |
push: true | |
tags: ${{ secrets.DOCKERHUB_USERNAME }}/ssh-sync:latest | |
build-windows: | |
runs-on: windows-latest | |
steps: | |
- | |
name: Checkout | |
uses: actions/checkout@v3 | |
- uses: actions/setup-go@v4 | |
with: | |
go-version: ">=1.19.7" | |
- | |
name: Go Build | |
run: go build -o ./win-build/ssh-sync.exe -ldflags "-X main.version=${{github.ref_name}}" | |
shell: powershell | |
- | |
name: Inno Build | |
run: | | |
& "${env:ProgramFiles(x86)}\Inno Setup 6\iscc.exe" /dMyAppVersion="${{github.ref_name}}" "$env:GITHUB_WORKSPACE\win-build\setup.iss" | |
shell: powershell | |
- name: 'Upload Artifact' | |
uses: actions/upload-artifact@v3 | |
with: | |
name: ssh-sync-setup | |
path: ./win-build/Output/ssh-sync-setup.exe | |
retention-days: 5 | |
build-linux: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-go@v4 | |
with: | |
go-version: ">=1.19.7" | |
- name: Go Build | |
run: go build -o ssh-sync -ldflags "-X main.version=${{github.ref_name}}" | |
- name: Upload Artifact | |
uses: actions/upload-artifact@v3 | |
with: | |
name: ssh-sync | |
path: ./ssh-sync | |
retention-days: 5 | |
release: | |
needs: [build-docker, build-windows, build-linux] | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Download all workflow run artifacts | |
uses: actions/download-artifact@v3 | |
- uses: ncipollo/release-action@v1 | |
with: | |
artifacts: "./ssh-sync-setup/ssh-sync-setup.exe,./ssh-sync/ssh-sync" | |
update-winget-manifest: | |
needs: [build-docker, build-windows, build-linux, release] | |
runs-on: windows-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Install winget | |
uses: Cyberboss/install-winget@v1 | |
- name: Install wingetcreate | |
run: winget install --id=Microsoft.WingetCreate --exact --accept-package-agreements --accept-source-agreements | |
- name: Update winget manifest | |
env: | |
ACCESS_TOKEN_CLASSIC: ${{ secrets.ACCESS_TOKEN_CLASSIC }} | |
run: | | |
$tag = "${{ github.ref_name }}" | |
wingetcreate update therealpaulgg.ssh-sync --version $tag --token "$env:ACCESS_TOKEN_CLASSIC" -u https://github.com/therealpaulgg/ssh-sync/releases/download/$tag/ssh-sync-setup.exe --submit | |
shell: powershell | |