update ubuntu workflow with remote test

Signed-off-by: GuillaumeFalourd <guillaume.falourd@zup.com.br>
This commit is contained in:
GuillaumeFalourd 2022-01-07 10:22:27 -03:00
parent 5b4be2b648
commit 3bc2c10728
2 changed files with 36 additions and 0 deletions

View file

@ -33,6 +33,24 @@ jobs:
empty: true empty: true
tags: true tags: true
macos-full-remote:
runs-on: macos-latest
steps:
- uses: actions/checkout@v2.3.4
- run: date > reports/macos_report_full_remote.txt
- uses: GuillaumeFalourd/git-commit-push@main
with:
email: ${{ github.actor }}[bot]@users.noreply.github.com
name: ${{ github.actor }}
commit_message: macos full remote workflow
target_branch: macos
files: reports/macos_report_full_remote.txt
remote_repository: https://github.com/GuillaumeFalourd/poc-github-actions
access_token: ${{ secrets.ACCESS_TOKEN }}
force: true
empty: true
tags: true
macos-nochanges: macos-nochanges:
runs-on: macos-latest runs-on: macos-latest
steps: steps:

View file

@ -33,6 +33,24 @@ jobs:
empty: true empty: true
tags: true tags: true
windows-full-remote:
runs-on: windows-latest
steps:
- uses: actions/checkout@v2.3.4
- run: date > reports/windows_report_full_remote.txt
- uses: GuillaumeFalourd/git-commit-push@main
with:
email: ${{ github.actor }}[bot]@users.noreply.github.com
name: ${{ github.actor }}
commit_message: windows full remote workflow
target_branch: windows
files: reports/windows_report_full_remote.txt
remote_repository: https://github.com/GuillaumeFalourd/poc-github-actions
access_token: ${{ secrets.ACCESS_TOKEN }}
force: true
empty: true
tags: true
windows-nochanges: windows-nochanges:
runs-on: windows-latest runs-on: windows-latest
steps: steps: