diff --git a/.gitea/workflows/build.yaml b/.gitea/workflows/build.yaml index 21052af..3d2d11d 100644 --- a/.gitea/workflows/build.yaml +++ b/.gitea/workflows/build.yaml @@ -20,24 +20,24 @@ jobs: distribution: 'adopt' cache: 'maven' # maven缓存,不加的话每次都会去重新拉取,会影响速度 - - name: Dependies Cache - uses: actions/cache@v2 - with: - path: ~/.m2/repository - key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }} - restore-keys: | - ${{ runner.os }}-maven- +# - name: Dependies Cache +# uses: actions/cache@v2 +# with: +# path: ~/.m2/repository +# key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }} +# restore-keys: | +# ${{ runner.os }}-maven- # 编译打包 - name: Build with Maven run: | mvn package -Dmaven.test.skip=true - name: Set up Docker Buildx id: buildx - uses: docker/setup-buildx-action@v1 + uses: docker/setup-buildx-action@v3 #build镜像并push到中央仓库中 - name: Build and push id: docker_build - uses: docker/build-push-action@v2 + uses: docker/build-push-action@v5 with: context: ./ file: ./dockerfile