Skip to content

Commit

Permalink
small changes
Browse files Browse the repository at this point in the history
  • Loading branch information
datawhores committed Apr 9, 2024
1 parent 32599b5 commit 8a6c024
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions .github/workflows/commit_bundler.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,7 @@ jobs:
# - name: list files 4
# run: ls /home/runner/work/OF-Scraper/OF-Scraper/ofscraper
linux:
if: github.event_name == 'push' && !contains(github.ref, 'refs/tags/')
needs: [create_version]
runs-on: ubuntu-20.04
name: create linux release
Expand Down Expand Up @@ -118,6 +119,7 @@ jobs:
path: "dist/ofscraper_linux_${{ steps.commit.outputs.short}}.zip"

windows_dir:
if: github.event_name == 'push' && !contains(github.ref, 'refs/tags/')
needs: [create_version]
runs-on: windows-latest
name: create windows release dir
Expand Down Expand Up @@ -184,6 +186,7 @@ jobs:
path: "dist/ofscraper_windows_${{steps.commit.outputs.short}}.zip"

windows_file:
if: github.event_name == 'push' && !contains(github.ref, 'refs/tags/')
needs: [create_version]
runs-on: windows-latest
name: create windows release file
Expand Down Expand Up @@ -255,6 +258,7 @@ jobs:
path: "dist/ofscraper_windows_${{steps.commit.outputs.short}}.zip"

mac:
if: github.event_name == 'push' && !contains(github.ref, 'refs/tags/')
needs: [create_version]
runs-on: macos-latest
name: create mac release
Expand Down Expand Up @@ -352,6 +356,7 @@ jobs:
path: "dist/ofscraper_macos_${{steps.commit.outputs.short}}.zip"

publish_release:
if: github.event_name == 'push' && !contains(github.ref, 'refs/tags/')
runs-on: ubuntu-latest
name: publish
needs: [mac, windows_dir, windows_file, linux]
Expand Down

0 comments on commit 8a6c024

Please sign in to comment.