fix: Included ConnextDdsAddExample in remote_admin's cmake #189
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# This workflow will be triggered when a pull request is opened to the master | |
# branch. After being triggered, it will download the source from the branch | |
# to which the pull request was opened. | |
name: PR handler | |
on: | |
pull_request: | |
branches: | |
- master | |
jobs: | |
upload: | |
runs-on: ubuntu-20.04 | |
name: Artifacts generation | |
steps: | |
# Download the source from the branch to which the pull request was | |
# opened. | |
- uses: actions/checkout@v3 | |
with: | |
submodules: true | |
# Save the PR number for the next workflow to create the current | |
# workflow artifact along with the repository itself. | |
- name: Save PR number | |
run: echo ${{ github.event.number }} > ${{ github.workspace }}/NR | |
# Upload the artifacts to GitHub so that they can be used in the next | |
# workflow. | |
- name: Upload generated artifact | |
uses: actions/upload-artifact@v3 | |
with: | |
name: pr | |
path: ${{ github.workspace }} | |
if-no-files-found: error |