Skip to content

Commit

Permalink
only run release dev workflow on push
Browse files Browse the repository at this point in the history
  • Loading branch information
Inrixia committed Oct 30, 2024
1 parent 4df2bc8 commit 47b5bbe
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions .github/workflows/autoDev.yml
Original file line number Diff line number Diff line change
Expand Up @@ -88,12 +88,14 @@ jobs:
with:
name: ${{ matrix.platform.runs-on }}
path: ./artifacts/
if: github.event_name == 'push'

# Release to GitHub (runs after tests)
Release:
name: Release dev build on GitHub
needs: Sanity
runs-on: ubuntu-latest
if: github.event_name == 'push'

steps:
- name: Download All Artifacts
Expand All @@ -116,6 +118,7 @@ jobs:
name: Publish dev build to DockerHub
needs: Sanity
runs-on: ubuntu-latest
if: github.event_name == 'push'

steps:
- name: Set up Docker Buildx
Expand Down

0 comments on commit 47b5bbe

Please sign in to comment.