Skip to content

Commit

Permalink
use master. (#6)
Browse files Browse the repository at this point in the history
  • Loading branch information
portlek authored Aug 22, 2024
1 parent 9c08d70 commit ae1b94a
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 8 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,18 +9,18 @@ jobs:
name: "Build"
runs-on: "ubuntu-latest"
steps:
- uses: "actions/checkout@v4"
- uses: "actions/setup-java@v4"
- uses: "actions/checkout@master"
- uses: "actions/setup-java@master"
with:
distribution: "adopt"
java-version: "11"
- uses: "actions/cache@v4"
- uses: "actions/cache@master"
with:
path: "~/.gradle/caches"
key: "${{ runner.os }}-gradle-cache-${{ hashFiles('**/*.gradle.kts') }}"
restore-keys: |
${{ runner.os }}-gradle-
- uses: "actions/cache@v4"
- uses: "actions/cache@master"
with:
path: "~/.gradle/wrapper"
key: "${{ runner.os }}-gradle-wrapper-${{ hashFiles('**/gradle-wrapper.properties') }}"
Expand Down
9 changes: 5 additions & 4 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
---
# TODO: portlek, Implement the publish command.
name: "Release"
"on":
release:
Expand All @@ -9,18 +10,18 @@ jobs:
name: "Release"
runs-on: "ubuntu-latest"
steps:
- uses: "actions/checkout@v4"
- uses: "actions/setup-java@v4"
- uses: "actions/checkout@master"
- uses: "actions/setup-java@master"
with:
distribution: "adopt"
java-version: "11"
- uses: "actions/cache@v4"
- uses: "actions/cache@master"
with:
path: "~/.gradle/caches"
key: "${{ runner.os }}-gradle-cache-${{ hashFiles('**/*.gradle.kts') }}"
restore-keys: |
${{ runner.os }}-gradle-
- uses: "actions/cache@v4"
- uses: "actions/cache@master"
with:
path: "~/.gradle/wrapper"
key: "${{ runner.os }}-gradle-wrapper-${{ hashFiles('**/gradle-wrapper.properties') }}"
Expand Down

0 comments on commit ae1b94a

Please sign in to comment.