Skip to content

Commit

Permalink
Fix workflows using wrong filename
Browse files Browse the repository at this point in the history
  • Loading branch information
Inrixia committed Oct 30, 2024
1 parent a54eb2f commit 8cdb207
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/pullRequestDev.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,4 +16,4 @@ jobs:
github_token: ${{ secrets.GITHUB_TOKEN }}

Build:
uses: ./.github/workflows/buildDev.yml
uses: ./.github/workflows/build.yml
3 changes: 1 addition & 2 deletions .github/workflows/releaseDev.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ on:

jobs:
Build:
uses: ./.github/workflows/buildDev.yml
uses: ./.github/workflows/build.yml

Release:
name: Release dev build on GitHub
Expand All @@ -30,7 +30,6 @@ jobs:
title: Latest
files: build/*

# Release to DockerHub (runs after tests)
DockerHub:
name: Publish dev build to DockerHub
needs: Build
Expand Down
4 changes: 1 addition & 3 deletions .github/workflows/releaseMaster.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,8 @@ on:

jobs:
Build:
uses: ./.github/workflows/buildDev.yml
uses: ./.github/workflows/build.yml

# Release to GitHub (runs after tests)
Release:
name: Draft latest release on GitHub
needs: Build
Expand All @@ -31,7 +30,6 @@ jobs:
title: Latest Release
files: build/*

# Release to DockerHub (runs after tests)
DockerHub:
name: Publish latest build to DockerHub
needs: Build
Expand Down

0 comments on commit 8cdb207

Please sign in to comment.