try only active window #33
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 | |
on: | |
push: | |
branches: | |
- main | |
workflow_dispatch: | |
env: | |
CARGO_TERM_COLOR: always | |
DISPLAY: :99 | |
SLINT_FULLSCREEN: 1 | |
RUST_LOG: debug | |
jobs: | |
build: | |
runs-on: macos-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Cache cargo bin | |
uses: actions/cache@v2 | |
with: | |
path: ~/.cargo/bin | |
key: ${{ runner.os }}-cargo-bin-foo-${{ hashFiles('**/Cargo.lock') }} | |
- name: Cache cargo registry | |
uses: actions/cache@v2 | |
with: | |
path: ~/.cargo/registry | |
key: ${{ runner.os }}-cargo-registry-foo-${{ hashFiles('**/Cargo.lock') }} | |
- name: Cache cargo index | |
uses: actions/cache@v2 | |
with: | |
path: ~/.cargo/git | |
key: ${{ runner.os }}-cargo-git-foo-${{ hashFiles('**/Cargo.lock') }} | |
- name: Cache cargo build | |
uses: actions/cache@v2 | |
with: | |
path: target | |
key: ${{ runner.os }}-cargo-build-target-foo-${{ hashFiles('**/Cargo.lock') }} | |
- name: Install dependencies | |
run: brew install imagemagick | |
- name: Build | |
run: cargo build --release | |
- name: Run and take screenshot | |
run: | | |
cargo run --release > cargo.log 2>&1 & | |
sleep 30 | |
cat cargo.log | |
osascript -e 'tell application "System Events" to tell process "infoskjerm" to set frontmost to true' | |
osascript -e 'delay 2' # Wait for 2 seconds to ensure the window comes to the front | |
screencapture -l$(osascript -e 'tell application "System Events" to return id of window of process "infoskjerm"') screenshot.png | |
- name: Commit and push screenshot | |
run: | | |
git config --local user.email "action@github.com" | |
git config --local user.name "GitHub Action" | |
git add . | |
git commit -m "Add screenshot" -a | |
git push |