diff --git a/.gitea/workflows/demo.yaml b/.gitea/workflows/demo.yaml index 46a2080..feaad48 100644 --- a/.gitea/workflows/demo.yaml +++ b/.gitea/workflows/demo.yaml @@ -11,18 +11,27 @@ jobs: Build: runs-on: ubuntu-latest steps: - - run: echo "🎉 The job was automatically triggered by a ${{ gitea.event_name }} event." - - run: echo "🐧 This job is now running on a ${{ runner.os }} server hosted by Gitea!" - - run: echo "🔎 The name of your branch is ${{ gitea.ref }} and your repository is ${{ gitea.repository }}." - name: Check out repository code uses: actions/checkout@v5 - - uses: actions/setup-node@v5 + - name: Setup Node v20 + uses: actions/setup-node@v5 with: node-version: 20 + - name: setup ssh + run: + mkdir -p ~/.ssh/ + echo "$SSH_PRIVATE_KEY" > ../private.key + sudo chmod 600 ../private.key + echo "$SSH_KNOWN_HOSTS" > ~/.ssh/known_hosts + echo "HELOO" > ../test + sudo chmod 600 ../test + scp -i ../private.key -P ${{ secrets.BLOG_PORT }} ../test blog@madeio.net:/var/www/html/ + shell: bash + env: + SSH_PRIVATE_KEY: ${{secrets.BLOG_SSH_KEY}} + SSH_KNOWN_HOSTS: ${{secrets.SSH_KNOWN_HOSTS}} - run: | cd ${{ gitea.workspace }} - run: npm ci - run: npm run build - - run: echo "${{ BLOG_SSH_KEY }}" > key.priv - - run: scp -i key.priv -P ${{ secrets.BLOG_PORT }} -r build/* blog@madeio.net:/var/www/html/ - run: echo "🍏 This job's status is ${{ job.status }}."