Skip to content

Commit

Permalink
renamed linux-->ubuntu and windows-->cygwin
Browse files Browse the repository at this point in the history
  • Loading branch information
fragolinux committed Apr 27, 2023
1 parent a99f17d commit 8f79511
Showing 1 changed file with 13 additions and 13 deletions.
26 changes: 13 additions & 13 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,9 @@ on:
- "v*"

jobs:
build-linux:
build-ubuntu:
runs-on: ubuntu-latest
name: "Linux Build"
name: "Ubuntu Build"

strategy:
matrix:
Expand Down Expand Up @@ -43,17 +43,17 @@ jobs:
run: make ${{matrix.build.test}}

- name: rename
run: mv trurl trurl-linux
run: mv trurl trurl-ubuntu

- name: artifacts
uses: actions/upload-artifact@v3
with:
name: Linux
path: ./trurl-linux
name: Ubuntu
path: ./trurl-ubuntu

build-cygwin:
runs-on: windows-latest
name: "Windows Build"
runs-on: cygwin-latest
name: "Cygwin Build"

steps:
- uses: actions/checkout@v3
Expand All @@ -73,13 +73,13 @@ jobs:
run: make test

- name: rename
run: mv trurl.EXE trurl-windows.exe
run: mv trurl.EXE trurl-cygwin.exe

- name: artifacts
uses: actions/upload-artifact@v3
with:
name: Windows
path: ./trurl-windows.exe
name: Cygwin
path: ./trurl-cygwin.exe

build-macos:
runs-on: macos-latest
Expand Down Expand Up @@ -114,7 +114,7 @@ jobs:
name: "Tagged Release"
runs-on: ubuntu-latest
permissions: write-all
needs: [build-linux, build-cygwin, build-macos]
needs: [build-ubuntu, build-cygwin, build-macos]

steps:
- uses: actions/download-artifact@v3
Expand All @@ -127,6 +127,6 @@ jobs:
repo_token: "${{ secrets.GITHUB_TOKEN }}"
prerelease: false
files: |
./Linux/trurl-linux
./Windows/trurl-windows.exe
./Ubuntu/trurl-ubuntu
./Cygwin/trurl-cygwin.exe
./Macos/trurl-macos

0 comments on commit 8f79511

Please sign in to comment.