Skip to content
This repository was archived by the owner on Mar 6, 2024. It is now read-only.

Commit 4ccc031

Browse files
Switched repo targets and sources for testing
Signed-off-by: Philip WINDECKER (AVENYR GmbH) <philip.windecker@avenyr.de>
1 parent 78e091c commit 4ccc031

3 files changed

Lines changed: 17 additions & 17 deletions

File tree

.github/workflows/antora-generator.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,5 +23,5 @@ jobs:
2323
with:
2424
token: ${{ secrets.MACHINE_USER_PAT }}
2525
event-type: antora-build-trigger
26-
repository: OpenSimulationInterface/osi-antora-generator
26+
repository: philipwindecker/osi-antora-generator
2727
client-payload: '{"src": "${{ github.repository }}", "ref": "${{ github.ref }}", "sha": "${{ github.sha }}", "head_ref": "${{ github.head_ref }}"}'

.github/workflows/protobuf.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -68,15 +68,15 @@ jobs:
6868
run: sudo make install && sudo ldconfig
6969

7070
- name: Install proto2cpp
71-
run: git clone --depth 1 https://github.com/OpenSimulationInterface/proto2cpp.git
71+
run: git clone --depth 1 https://github.com/philipwindecker/proto2cpp.git
7272

7373
- name: Prepare C++ Build
7474
run: mkdir build
7575

7676
# Versioning
7777
- name: Get versioning
7878
id: get_version
79-
run: echo "VERSION=$(git describe --always)" >> $GITHUB_OUTPUT
79+
run: echo "VERSION=$(git describe --always)" >> $GITHUB_OUTPUT
8080

8181
- name: Prepare Documentation Build
8282
run: |

.github/workflows/release.yml

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -25,13 +25,13 @@ jobs:
2525
id: var_step
2626
working-directory: dist/open-simulation-interface
2727
run: |
28-
echo "version=$(git describe --tags --always | sed 's/^v//')" >> $GITHUB_OUTPUT
28+
echo "version=$(git describe --tags --always | sed 's/^v//')" >> $GITHUB_OUTPUT
2929
echo "suffix=$(git describe --tags --always | sed -r 's/^v[[:digit:]]+\.[[:digit:]]+\.[[:digit:]]+//')" >> $GITHUB_OUTPUT
3030
# Set the release date (current date)
3131
- name: Set date
3232
id: date_step
3333
run: echo "docdate=$(date +'%Y-%m-%d')" >> $GITHUB_OUTPUT
34-
34+
3535
## Tag and update related repositories before checking them out for Antora and the deliverables
3636
tagging_update:
3737
name: Update OSMP & Documentation
@@ -43,32 +43,32 @@ jobs:
4343
with:
4444
token: ${{ secrets.MACHINE_USER_PAT }}
4545
event-type: update-tag
46-
repository: OpenSimulationInterface/osi-sensor-model-packaging
46+
repository: philipwindecker/osi-sensor-model-packaging
4747
client-payload: '{"tag": "v${{needs.setup.outputs.output1}}", "suffix": "${{needs.setup.outputs.output3}}", "source_repo": "${{ github.repository }}"}'
4848
- name: Update Documentation
4949
uses: peter-evans/repository-dispatch@v2
5050
with:
5151
token: ${{ secrets.MACHINE_USER_PAT }}
5252
event-type: update-tag
53-
repository: OpenSimulationInterface/osi-documentation
53+
repository: philipwindecker/osi-documentation
5454
client-payload: '{"tag": "v${{needs.setup.outputs.output1}}"}'
5555
- name: Provide downstream repos some time
5656
uses: whatnick/wait-action@v0.1.2
5757
with:
5858
time: '1m'
5959

60-
60+
6161
## Antora job, responsible for creating the Antora output of the release
6262
antora:
6363
name: Generate Antora content
6464
runs-on: ubuntu-22.04
6565
needs: [tagging_update]
66-
steps:
66+
steps:
6767
# Check out the Antora generator
6868
- name: Checkout Antora generator
6969
uses: actions/checkout@v4
7070
with:
71-
repository: OpenSimulationInterface/osi-antora-generator
71+
repository: philipwindecker/osi-antora-generator
7272
path: antora
7373
submodules: true
7474
# Remove building branches for the main repositories. This will lead to Antora only using the tagged versions to build its content.
@@ -95,10 +95,10 @@ jobs:
9595
# Upload the created artifact for later jobs to use
9696
- name: Upload artifact
9797
uses: actions/upload-artifact@v4
98-
with:
98+
with:
9999
name: antora
100100
path: antora/site
101-
101+
102102
## Step for creating the zip file with all deliverables
103103
deliverables:
104104
name: Create deliverables package
@@ -114,7 +114,7 @@ jobs:
114114
- name: Checkout sensor model packaging
115115
uses: actions/checkout@v4
116116
with:
117-
repository: OpenSimulationInterface/osi-sensor-model-packaging
117+
repository: philipwindecker/osi-sensor-model-packaging
118118
path: dist/osi-sensor-model-packaging
119119
fetch-depth: 0
120120
# Retrieve the Antora artifact from the previous job
@@ -139,13 +139,13 @@ jobs:
139139
name="ASAM OSI"
140140
version="Version: ${{needs.setup.outputs.output1}}"
141141
date="Date: ${{needs.setup.outputs.output2}}"
142-
142+
143143
echo "/$(repeat $char_count_header "*")" > README.txt
144144
fill $char_count "$name" >> README.txt
145145
fill $char_count "$version" >> README.txt
146146
fill $char_count "$date" >> README.txt
147147
echo "$(repeat $char_count_header "*")/" >> README.txt
148-
echo "The deliverables of ASAM OSI v${{needs.setup.outputs.output1}} include:
148+
echo "The deliverables of ASAM OSI v${{needs.setup.outputs.output1}} include:
149149
150150
- ASAM_OSI_Standard_${{needs.setup.outputs.output1}}
151151
- open_simulation_interface_${{needs.setup.outputs.output1}}
@@ -155,7 +155,7 @@ jobs:
155155
# Package all collected deliverables
156156
- name: Zip Release
157157
uses: TheDoctor0/zip-release@0.7.6
158-
with:
158+
with:
159159
filename: ASAM_OSI_${{needs.setup.outputs.output1}}.zip
160160
directory: dist
161161
# Upload the created artifact for the publish job
@@ -188,5 +188,5 @@ jobs:
188188
with:
189189
token: ${{ secrets.MACHINE_USER_PAT }}
190190
event-type: antora-build-trigger
191-
repository: OpenSimulationInterface/osi-antora-generator
191+
repository: philipwindecker/osi-antora-generator
192192
client-payload: '{"src": "${{ github.repository }}", "ref": "master"}'

0 commit comments

Comments
 (0)