Skip to content

Commit

Permalink
Revert "♻️"
Browse files Browse the repository at this point in the history
This reverts commit b22d064.
  • Loading branch information
oat9002 committed Dec 22, 2023
1 parent 4b1220a commit c3366a2
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 11 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/docker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,11 +16,11 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up JDK 21
- name: Set up JDK 17
uses: actions/setup-java@v3
with:
distribution: 'temurin'
java-version: '21'
java-version: '17'
- name: Set up QEMU
uses: docker/setup-qemu-action@v2
- name: Set up Docker Buildx
Expand All @@ -42,4 +42,4 @@ jobs:
- name: Publish to Docker Hub
run: |
cd ./target/docker/stage
docker buildx build --platform="linux/amd64,linux/arm/v8" -t oat9002/crypto-notify:latest -t oat9002/crypto-notify:${{ steps.get-app-version.outputs.APP_VERSION }} --push .
docker buildx build --platform="linux/amd64,linux/arm64,linux/arm/v7" -t oat9002/crypto-notify:latest -t oat9002/crypto-notify:${{ steps.get-app-version.outputs.APP_VERSION }} --push .
12 changes: 6 additions & 6 deletions .github/workflows/pr_build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,11 +13,11 @@ jobs:
with:
ref: ${{ github.head_ref }}
token: ${{ secrets.ACTION_TOKEN }}
- name: Set up JDK 21
- name: Set up JDK 17
uses: actions/setup-java@v3
with:
distribution: 'temurin'
java-version: '21'
java-version: '17'
- name: Set Git Username
run: |
git config --global user.name "github-actions[bot]"
Expand All @@ -44,11 +44,11 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up JDK 21
- name: Set up JDK 17
uses: actions/setup-java@v3
with:
distribution: 'temurin'
java-version: '21'
java-version: '17'
- name: Clean and Compile
run: sbt clean compile

Expand All @@ -57,11 +57,11 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up JDK 21
- name: Set up JDK 17
uses: actions/setup-java@v3
with:
distribution: 'temurin'
java-version: '21'
java-version: '17'
- name: Test
run: sbt test

4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,11 +15,11 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up JDK 21
- name: Set up JDK 17
uses: actions/setup-java@v3
with:
distribution: 'temurin'
java-version: '21'
java-version: '17'
- name: Set GitHub user
run: |
git config --global user.name 'github-actions[bot]'
Expand Down

0 comments on commit c3366a2

Please sign in to comment.