Updated README and removed the temporary use of upgrader. #20
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: Take Screenshot | |
defaults: | |
run: | |
working-directory: packages/tide_kit | |
on: | |
workflow_dispatch: | |
push: | |
branches: | |
- '**' | |
pull_request: | |
branches: | |
- '**' | |
jobs: | |
take_screenshot: | |
runs-on: windows-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
- name: LS | |
run: bash.exe -c "pwd; ls -al; ls -al scripts;" | |
- name: Run PowerShell script to take screenshot2 | |
run: | | |
powershell.exe -File scripts/take_screenshot_windows.ps1 | |
- name: LS | |
run: bash.exe -c "ls -al;" | |
- name: Upload screenshot | |
uses: actions/upload-artifact@v4 | |
with: | |
name: screenshot | |
path: screenshot.png |