Update supported client OS's - Windows Server IoT 2019 for Storage and Windows Server IoT 2022 for Storage are not supported client OSs #70
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: Background tasks | |
permissions: | |
pull-requests: write | |
contents: read | |
on: | |
pull_request_target: | |
jobs: | |
upload: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Save payload data | |
env: | |
PayloadJson: ${{ toJSON(github) }} | |
AccessToken: ${{ github.token }} | |
run: | | |
mkdir -p ./pr | |
echo $PayloadJson > ./pr/PayloadJson.json | |
sed -i -e "s/$AccessToken/XYZ/g" ./pr/PayloadJson.json | |
- uses: actions/upload-artifact@v4 | |
with: | |
name: PayloadJson | |
path: pr/ |