mirror of
https://github.com/abapGit/abapGit.git
synced 2025-04-30 11:46:38 +08:00
103 lines
3.0 KiB
YAML
103 lines
3.0 KiB
YAML
name: main-build
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- main
|
|
|
|
jobs:
|
|
build-merged:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
- uses: actions/setup-node@v4
|
|
- name: Run npm steps
|
|
run: |
|
|
npm install
|
|
npm run merge
|
|
npm run merge.ci
|
|
- name: build-merged-build
|
|
run: ./ci/build-merged-build.sh
|
|
- name: deploy-merged-build
|
|
uses: peaceiris/actions-gh-pages@v3
|
|
if: github.ref == 'refs/heads/main' && github.repository == 'abapGit/abapGit'
|
|
with:
|
|
deploy_key: ${{ secrets.DEPLOY_ABAPGIT_BUILD }}
|
|
external_repository: abapGit/build
|
|
user_name: 'github-actions[bot]'
|
|
user_email: 'github-actions[bot]@users.noreply.github.com'
|
|
publish_branch: main
|
|
publish_dir: ../build
|
|
- name: Upload build artifact
|
|
if: always()
|
|
uses: actions/upload-artifact@main
|
|
with:
|
|
name: zabapgit_standalone.abap
|
|
path: ./zabapgit.abap
|
|
retention-days: 7
|
|
|
|
auto-tag:
|
|
runs-on: ubuntu-latest
|
|
outputs:
|
|
pushedTag: ${{ steps.deploy-release-tag.outputs.pushedTag }}
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
with:
|
|
fetch-depth: 2
|
|
- uses: actions/setup-node@v4
|
|
- name: deploy-release-tag
|
|
id: deploy-release-tag
|
|
if: github.ref == 'refs/heads/main' && github.repository == 'abapGit/abapGit'
|
|
env:
|
|
GITHUB_API_KEY: ${{ secrets.GITHUB_TOKEN }}
|
|
GIT_USER_NAME: 'github-actions[bot]'
|
|
GIT_USER_EMAIL: 'github-actions[bot]@users.noreply.github.com'
|
|
run: ./ci/deploy-release-tag.sh
|
|
|
|
auto-tag-artifact:
|
|
runs-on: ubuntu-latest
|
|
needs: [build-merged, auto-tag]
|
|
if: github.ref == 'refs/heads/main' && github.repository == 'abapGit/abapGit' && !!needs.auto-tag.outputs.pushedTag
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
with:
|
|
repository: abapGit/build
|
|
path: build
|
|
ssh-key: ${{ secrets.DEPLOY_ABAPGIT_BUILD }}
|
|
- uses: actions/checkout@v4
|
|
with:
|
|
path: abapGit
|
|
- name: mirror tag to the artifact
|
|
env:
|
|
GIT_USER_NAME: 'github-actions[bot]'
|
|
GIT_USER_EMAIL: 'github-actions[bot]@users.noreply.github.com'
|
|
run: |
|
|
cd build
|
|
../abapGit/ci/push-tag.sh ${{ needs.auto-tag.outputs.pushedTag }}
|
|
|
|
coverage:
|
|
runs-on: ubuntu-latest
|
|
timeout-minutes: 5
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
- uses: actions/setup-node@v4
|
|
- name: npm run unit
|
|
run: |
|
|
npm install
|
|
npm run unit
|
|
- name: npm run coverage
|
|
run: |
|
|
npm run coverage
|
|
- name: Update coverage.abapgit.org
|
|
uses: peaceiris/actions-gh-pages@v3
|
|
if: github.ref == 'refs/heads/main' && github.repository == 'abapGit/abapGit'
|
|
with:
|
|
deploy_key: ${{ secrets.COVERAGE_DEPLOY_KEY }}
|
|
external_repository: abapGit/coverage.abapgit.org
|
|
user_name: 'github-actions[bot]'
|
|
user_email: 'github-actions[bot]@users.noreply.github.com'
|
|
publish_branch: main
|
|
cname: coverage.abapgit.org
|
|
force_orphan: true
|
|
publish_dir: ./coverage
|