We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c0a09bd commit aa08e1eCopy full SHA for aa08e1e
.github/workflows/remote_release.yml
@@ -18,6 +18,19 @@ jobs:
18
with:
19
fetch-depth: 0 # otherwise, there would be errors pushing refs to the destination repository.
20
21
+ - name: Update submodule
22
+ run: |
23
+ git submodule init
24
+ git submodule update --recursive --remote
25
+ cd open-simulation-interface
26
+ git checkout ${{ github.event.client_payload.tag }}
27
+ cd ..
28
+ git config --local user.email "41898282+github-actions[bot]@users.noreply.github.com"
29
+ git config --local user.name "github-actions[bot]"
30
+ git add .
31
+ git commit -m "OSI submodule updated"
32
+ continue-on-error: true
33
+
34
- name: Create tag
35
run: git tag ${{ github.event.client_payload.tag }}
36
0 commit comments