Instapass orange_candle from 2024-12-12 #2752
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: Create Pack | |
on: | |
push: | |
branches-ignore: | |
- master | |
- main | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Get branch name | |
id: branch-name | |
uses: tj-actions/[email protected] | |
- name: Create Pack | |
uses: appleboy/[email protected] | |
with: | |
host: ${{ secrets.HOST }} | |
USERNAME: ${{ secrets.USERNAME }} | |
PORT: ${{ secrets.PORT }} | |
KEY: ${{ secrets.SSH }} | |
script: | | |
[ ! -d "./packs/Classic-Faithful-64x-Jappa/${{ steps.branch-name.outputs.current_branch }}" ] && exit 1 | |
cd "./packs/Classic-Faithful-64x-Jappa/${{ steps.branch-name.outputs.current_branch }}" | |
git pull | |
zip -r "Classic Faithful 64x Jappa - ${{ steps.branch-name.outputs.current_branch }}.zip" . -x "*.git*" -x "*.github*" -x ".gitignore" | |
mv "Classic Faithful 64x Jappa - ${{ steps.branch-name.outputs.current_branch }}.zip" "/var/www/html/database.faithfulpack.net/packs/Classic-64x-Java/Jappa" |