打印提交信息 by @Dango-dx #54
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: 打印提交信息 | ||
run-name: 打印提交信息 by @${{ github.actor }} | ||
on: [push] | ||
env: | ||
JAVA_HOME: ${{ env.JAVA_HOME_17_X64 }} | ||
Check failure on line 7 in .github/workflows/AA.yml GitHub Actions / 打印提交信息Invalid workflow file
|
||
jobs: | ||
# print_env: | ||
# uses: Dango-dx/ReusableWorkflows/.github/workflows/print_github_info.yml@master | ||
# print_a: | ||
# uses: Dango-dx/ReusableWorkflows/.github/workflows/publish_maven_central.yml@master | ||
# with: | ||
# module_path: :lib:widget | ||
# artifact_name: lib_test | ||
# version_name: 1.3.5 | ||
job0: | ||
runs-on: ubuntu-latest | ||
# container: | ||
# 指定您的自定义 Docker 镜像及其标签 | ||
# image: registry.cn-shanghai.aliyuncs.com/dango/android_ci:latest | ||
# platform | ||
# options: --platform linux/amd64 | ||
steps: | ||
- name: Checkout repository | ||
uses: actions/checkout@v2 | ||
- name: prepare | ||
run: | | ||
chmod +x ./gradlew | ||
- name: assemble | ||
run: | | ||
./gradlew :lib:widget:assemble | ||
continue-on-error: true | ||
- name: publish | ||
run: | | ||
./gradlew :lib:widget:publish | ||
continue-on-error: true | ||
- name: Upload | ||
uses: actions/upload-artifact@v2 | ||
with: | ||
name: aar | ||
path: ./lib/widget/build/outputs/aar/ |