After having PR_target right in the develop branch #73
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
name: C3 | |
on: | |
pull_request: | |
push: | |
jobs: | |
before-publish-upload-artifact: | |
runs-on: ubuntu-20.04 | |
steps: | |
- name: Create artifact A3 | |
run: echo "This is an artifact from C3 4 After access" > report.txt | |
- name: Uploading A3 as artifact | |
uses: actions/upload-artifact@v4 | |
with: | |
name: report | |
path: report.txt |