Skip to content

Commit

Permalink
Merge pull request #62 from SamTV12345/develop
Browse files Browse the repository at this point in the history
Changed name globally to PodFetch
  • Loading branch information
SamTV12345 authored Apr 11, 2023
2 parents 476b57c + c9b0468 commit 78ba3ca
Show file tree
Hide file tree
Showing 8 changed files with 178 additions and 104 deletions.
16 changes: 8 additions & 8 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,11 +28,11 @@ jobs:
override: true

- name: Build
run: cargo build --all --release && strip target/release/podgrabv2 && mv target/release/podgrabv2 target/release/podgrabv2_amd64
run: cargo build --all --release && strip target/release/podfetch && mv target/release/podfetch target/release/podfetch_amd64
- name: Copy to root
run: cp target/release/podgrabv2_amd64 .
run: cp target/release/podfetch_amd64 .
- name: zip
run: zip -r podfetch-linux.zip podgrabv2_amd64 db static migrations LICENSE README.md
run: zip -r podfetch-linux.zip podfetch_amd64 db static migrations LICENSE README.md
- name: Release
uses: softprops/action-gh-release@v1
if: startsWith(github.ref, 'refs/tags/')
Expand Down Expand Up @@ -66,9 +66,9 @@ jobs:
- name: Build
run: cargo build --all --release
- name: Copy to root
run: cp target/release/podgrabv2.exe .
run: cp target/release/podfetch.exe .
- name: Zip
run: Compress-Archive -Path podgrabv2.exe,db,static,migrations,LICENSE,README.md -DestinationPath podfetch-win.zip
run: Compress-Archive -Path podfetch.exe,db,static,migrations,LICENSE,README.md -DestinationPath podfetch-win.zip
- name: Release
uses: softprops/action-gh-release@v1
if: startsWith(github.ref, 'refs/tags/')
Expand Down Expand Up @@ -101,11 +101,11 @@ jobs:
override: true

- name: Build for mac
run: cargo build --all --release && strip target/release/podgrabv2 && mv target/release/podgrabv2 target/release/podgrabv2_darwin
run: cargo build --all --release && strip target/release/podfetch && mv target/release/podfetch target/release/podfetch_darwin
- name: Copy to root
run: cp target/release/podgrabv2_darwin .
run: cp target/release/podfetch_darwin .
- name: Zip
run: zip -r podfetch-apple.zip podgrabv2_darwin db static migrations LICENSE README.md
run: zip -r podfetch-apple.zip podfetch_darwin db static migrations LICENSE README.md
- name: Release
uses: softprops/action-gh-release@v1
if: startsWith(github.ref, 'refs/tags/')
Expand Down
Loading

0 comments on commit 78ba3ca

Please sign in to comment.