PYTHONIOENCODING #17
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
on: | |
push: | |
branches: | |
- main | |
env: | |
MAIN_BRANCH_URL: "https://raw.githubusercontent.com/liquidcarbon/puppy/main/" | |
jobs: | |
install-bash: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
- name: Install puppy3.12 | |
run: | | |
curl -fsSL $MAIN_BRANCH_URL/pup.sh | bash -s 3.12 | |
- name: Create alias and run a pup command | |
run: | | |
. <(curl -fsSL $MAIN_BRANCH_URL/pup.sh | tail -1) && pup fetch test1 "cowsay<6" | |
install-windows: | |
runs-on: windows-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
- name: Install puppy3.11 | |
run: | | |
& ([scriptblock]::Create((iwr -useb $env:MAIN_BRANCH_URL/pup.ps1).Content)) 3.11 | |
- name: Create alias and run a pup command | |
run: | | |
iex ((iwr $env:MAIN_BRANCH_URL/pup.ps1).Content -split "`n")[-2] ; pup which |