Skip to content

Commit

Permalink
totally change CI again
Browse files Browse the repository at this point in the history
  • Loading branch information
therealpaulgg authored Mar 18, 2023
1 parent fb597a5 commit 232ec63
Show file tree
Hide file tree
Showing 3 changed files with 73 additions and 56 deletions.
55 changes: 0 additions & 55 deletions .github/workflows/main.yml

This file was deleted.

65 changes: 64 additions & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,13 +6,76 @@ on:
- '*'

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
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/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
- 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:
- name: Download all workflow run artifacts
uses: actions/download-artifact@v3
- uses: actions/checkout@v2
- uses: ncipollo/release-action@v1
with:
artifacts: "./win-build/ssh-sync-setup.exe"
artifacts: "./win-build/ssh-sync-setup.exe,ssh-sync"

9 changes: 9 additions & 0 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,3 +39,12 @@ jobs:
run: |
& "${env:ProgramFiles(x86)}\Inno Setup 6\iscc.exe" /dMyAppVersion="${{github.ref_name}}" "$env:GITHUB_WORKSPACE\win-build\setup.iss"
shell: powershell
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

0 comments on commit 232ec63

Please sign in to comment.