GPT-commit: Update README.md file #58
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: Generate Stdout 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 |