Skip to content

Commit

Permalink
move dependencies in the right place
Browse files Browse the repository at this point in the history
  • Loading branch information
eloots committed Aug 12, 2023
1 parent a1e68e5 commit 54e1c3b
Showing 1 changed file with 18 additions and 18 deletions.
36 changes: 18 additions & 18 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,24 @@ jobs:
- name: Set env
run: echo "RELEASE_VERSION=${GITHUB_REF#refs/*/}" >> $GITHUB_ENV

- name: Checkout Course Management Tools Repo
uses: actions/checkout@v3
with:
fetch-depth: 0

- name: Set up JDK 11
uses: actions/setup-java@v3
with:
java-version: 11
distribution: temurin
cache: 'sbt'

- name: Setup Coursier
run: |
curl -fLo coursier https://git.io/coursier-cli &&
chmod +x coursier &&
./coursier
- name: Publish Local
run: sbt publishLocal

Expand Down Expand Up @@ -89,24 +107,6 @@ jobs:

steps:

- name: Checkout Course Management Tools Repo
uses: actions/checkout@v3
with:
fetch-depth: 0

- name: Set up JDK 11
uses: actions/setup-java@v3
with:
java-version: 11
distribution: temurin
cache: 'sbt'

- name: Setup Coursier
run: |
curl -fLo coursier https://git.io/coursier-cli &&
chmod +x coursier &&
./coursier
- name: Setup Windows C++ toolchain
uses: ilammy/msvc-dev-cmd@v1
if: ${{ matrix.os == 'windows-latest' }}
Expand Down

0 comments on commit 54e1c3b

Please sign in to comment.