Skip to content

GPT-commit: Refactor workflow file. #55

GPT-commit: Refactor workflow file.

GPT-commit: Refactor workflow file. #55

Workflow file for this run

name: Generate Command Output Image
# Controls when the action will run. Triggers the workflow on push events
on:
push:
branches: [ master ]
workflow_dispatch:
permissions:
contents: write
jobs:
build:
runs-on: ubuntu-latest
steps:
# Check out repository under $GITHUB_WORKSPACE, so the job can access it
- uses: actions/checkout@v3
# Setup apt dependencies
- name: Setup dependencies
run: |
sudo apt -y update
sudo apt -y install ghostscript fonts-freefont-otf imagemagick
sudo sed -i 's/\(<policy domain="resource" name="width" value="\)[^"]*/\1160KP/' /etc/ImageMagick-6/policy.xml
sudo sed -i 's/\(<policy domain="resource" name="height" value="\)[^"]*/\1160KP/' /etc/ImageMagick-6/policy.xml
shell: bash
# Run the script
- name: Run script file
run: |
chmod +x wix-cli.sh
./wix-cli.sh img_stdout
shell: bash
# Commit and push changes
- name: Commit changes
run: |
git config --local user.name "WIX-CLI Bot"
git config --local user.email "[email protected]"
git add .generated/wixcli-output-preview.png
git commit -m "GH-Action: Update 'wix' stdout image"
git push