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 d51c334 commit 9772ef6Copy full SHA for 9772ef6
.github/workflows/remote_release.yml
@@ -17,7 +17,20 @@ jobs:
17
uses: actions/checkout@v3
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 open-simulation-interface
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