Wowie what a gay little website for my gay little self aria.coffee
3
fork

Configure Feed

Select the types of activity you want to include in your feed.

Continue is fail instead of if failed()

Aria 31037308 ab9baf03

+3 -2
+3 -2
.forgejo/workflows/deploy.yaml
··· 38 38 run: pnpm run build-action 39 39 40 40 - name: Create folder if not exists 41 + continue-on-error: true 41 42 run: | 42 43 ssh -i ~/.ssh/aria-coffee-deploy ${{ vars.SERVER_USER }}@${{ vars.SERVER_HOST }} "mkdir -p /var/www/Aria/" 43 44 44 45 - name: Clear old backup 45 - if: success() || failure() 46 + continue-on-error: true 46 47 run: | 47 48 ssh -i ~/.ssh/aria-coffee-deploy ${{ vars.SERVER_USER }}@${{ vars.SERVER_HOST }} "[ -d "/var/www/Aria/dist-old" ] && rm -r /var/www/Aria/dist-old" 48 49 49 50 - name: Backup current install 50 - if: success() || failure() 51 + continue-on-error: true 51 52 run: | 52 53 ssh -i ~/.ssh/aria-coffee-deploy ${{ vars.SERVER_USER }}@${{ vars.SERVER_HOST }} "[ -d "/var/www/Aria/dist" ] && mv /var/www/Aria/dist /var/www/Aria/dist-old" 53 54