-
Notifications
You must be signed in to change notification settings - Fork 2
45 lines (39 loc) · 1.33 KB
/
remote_release.yml
File metadata and controls
45 lines (39 loc) · 1.33 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
name: Remote Tagging
on:
repository_dispatch:
types: [update-tag]
permissions:
contents: write
repository-projects: write
jobs:
submodule:
name: Update submodule and create tag
runs-on: Ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
with:
fetch-depth: 0 # otherwise, there would be errors pushing refs to the destination repository.
- name: Update submodule
run: |
git submodule init
git submodule update --recursive --remote
cd open-simulation-interface
git checkout ${{ github.event.client_payload.tag }}
cd ..
git config --local user.email "41898282+github-actions[bot]@users.noreply.github.com"
git config --local user.name "github-actions[bot]"
git add open-simulation-interface
git commit -m "OSI submodule updated"
continue-on-error: true
- name: Create tag
run: git tag ${{ github.event.client_payload.tag }}
- name: GitHub Push
uses: ad-m/github-push-action@v0.6.0
with:
# Token for the repo. Can be passed in using $\{{ secrets.GITHUB_TOKEN }}
github_token: ${{ secrets.MACHINE_USER_PAT }}
branch: main
# Determines if --tags is used
tags: true
force: true