Skip to content

Commit

Permalink
release/fix-actions-clone (#92)
Browse files Browse the repository at this point in the history
fix actions
  • Loading branch information
trofim24 committed Sep 28, 2024
1 parent dbe54a1 commit 313bfec
Showing 1 changed file with 13 additions and 1 deletion.
14 changes: 13 additions & 1 deletion .github/workflows/common_check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -95,11 +95,23 @@ jobs:
with:
path: sdkjs

- name: check out repository
- name: check out repository sdkjs-forms current branch
id: sdkjs-forms
uses: actions/checkout@v4
continue-on-error: true
with:
repository: ONLYOFFICE/sdkjs-forms
token: ${{ secrets.READ_PAT }}
path: sdkjs-forms
ref: ${{ github.ref }}
- name: check out repository sdkjs-forms master branch
if: steps.sdkjs-forms.outcome != 'success'
uses: actions/checkout@v4
with:
repository: ONLYOFFICE/sdkjs-forms
token: ${{ secrets.READ_PAT }}
path: sdkjs-forms
ref: master

- name: Use Node.js 12
uses: actions/setup-node@v1
Expand Down

0 comments on commit 313bfec

Please sign in to comment.