Skip to content

Commit

Permalink
Refactor ci.yml to temporarily disable the dependency-submission step
Browse files Browse the repository at this point in the history
  • Loading branch information
bekiroguz committed Sep 23, 2024
1 parent 5733df9 commit 9ebf44b
Showing 1 changed file with 20 additions and 20 deletions.
40 changes: 20 additions & 20 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -79,24 +79,24 @@ jobs:
version: "v${{ env.VERSION }}"
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
dependency-submission:
name: Submit dependency graph
needs: [ci]
# run on 1) master branch
# do not run on pull requests
if: github.event_name != 'pull_request' && github.ref == 'refs/heads/master'
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Set up JDK 17
uses: actions/setup-java@v4
with:
distribution: temurin
java-version: 17
cache: sbt
- name: Submit dependency graph
uses: scalacenter/sbt-dependency-submission@v2
# dependency-submission:
# name: Submit dependency graph
# needs: [ci]
# # run on 1) master branch
# # do not run on pull requests
# if: github.event_name != 'pull_request' && github.ref == 'refs/heads/master'
# runs-on: ubuntu-latest
# steps:
# - name: Checkout
# uses: actions/checkout@v4
# with:
# fetch-depth: 0
# - name: Set up JDK 17
# uses: actions/setup-java@v4
# with:
# distribution: temurin
# java-version: 17
# cache: sbt
# - name: Submit dependency graph
# uses: scalacenter/sbt-dependency-submission@v2

0 comments on commit 9ebf44b

Please sign in to comment.