Skip to content

fix: upgrade to okhttp3 & configuration. #135

fix: upgrade to okhttp3 & configuration.

fix: upgrade to okhttp3 & configuration. #135

## Copyright (c) 2017 ~ 2025, the original authors individual Inc,
## All rights reserved. Contact us James Wong <jameswong1376@gmail.com>
##
## Unless required by applicable law or agreed to in writing, software
## distributed under the License is distributed on an "AS IS" BASIS,
## WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
## See the License for the specific language governing permissions and
## limitations under the License.
##
## see:https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#example-of-jobsjob_idsecrets
## see:https://github.com/apache/spark/blob/master/.github/workflows/build_main.yml
name: "Build on Push"
on:
## see:https://docs.github.com/en/actions/using-workflows/triggering-a-workflow#example-including-branches-and-tags
push:
branches:
#- '**'
#- 'releases/**' # eg: 'releases/**' will match the refs/heads/releases/10 Git ref.
- master
- main
- 'feature**'
- 'dev**'
- 'hotfix**'
pull_request:
branches:
- master
- main
- 'feature**'
- 'dev**'
- 'hotfix**'
jobs:
build-and-test:
permissions:
packages: write
name: Build and test
uses: './.github/workflows/run.yaml' ## This the calling to workflow.
if: github.repository == 'wl4g/rengine'
with:
enable-build: true
enable-deploy: false
enable-build-image-apiserver-tar: false
enable-build-image-apiserver-springjar: false
enable-build-image-controller-tar: false
enable-build-image-controller-springjar: false
enable-build-image-executor-tar: false
enable-build-image-executor-native: false
enable-push-image-dockerhub: false
#enable-push-image-ghcr: false
secrets:
PERSONAL_ACCESS_TOKEN: ${{ secrets.PERSONAL_ACCESS_TOKEN }}