Skip to content

Commit

Permalink
fix: deploy fixed files
Browse files Browse the repository at this point in the history
  • Loading branch information
betarixm committed Dec 11, 2023
1 parent 8c423fe commit fa9b75d
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -47,11 +47,11 @@ jobs:
- uses: actions/upload-artifact@v3
with:
name: master
path: master/target/scala-2.13/master.jar
path: build/master
- uses: actions/upload-artifact@v3
with:
name: worker
path: worker/target/scala-2.13/worker.jar
path: build/worker
- name: Release development build
if: github.ref == 'refs/heads/develop'
uses: marvinpinto/action-automatic-releases@latest
@@ -61,8 +61,8 @@ jobs:
prerelease: true
title: "Development Build"
files: |
master/target/scala-2.13/master.jar
worker/target/scala-2.13/worker.jar
build/master
build/worker
- name: Release production build
if: github.ref == 'refs/heads/main'
uses: marvinpinto/action-automatic-releases@latest
@@ -71,5 +71,5 @@ jobs:
automatic_release_tag: "latest"
title: "Production Build"
files: |
master/target/scala-2.13/master.jar
worker/target/scala-2.13/worker.jar
build/master
build/worker

0 comments on commit fa9b75d

Please sign in to comment.