Implement publish action
Some checks failed
Gitea Actions Demo / publish (push) Failing after 17s

This commit is contained in:
david-swift 2024-10-04 23:33:08 +02:00
parent c01ea42f08
commit 5f909c7b88

View File

@ -1,19 +1,24 @@
name: Gitea Actions Demo name: Gitea Actions Demo
run-name: ${{ gitea.actor }} is testing out Gitea Actions 🚀 run-name: Publish
on: [push] on: [push]
jobs: jobs:
Explore-Gitea-Actions: publish:
runs-on: volans runs-on: ubuntu-latest
steps: steps:
- run: echo "🎉 The job was automatically triggered by a ${{ gitea.event_name }} event." - name: Install Zola
- run: echo "🐧 This job is now running on a ${{ runner.os }} server hosted by Gitea!" uses: taiki-e/install-action@v2
- run: echo "🔎 The name of your branch is ${{ gitea.ref }} and your repository is ${{ gitea.repository }}." with:
tool: zola@0.19.1
- name: Check out repository code - name: Check out repository code
uses: actions/checkout@v4 uses: actions/checkout@v4
- run: echo "💡 The ${{ gitea.repository }} repository has been cloned to the runner." - name: Build
- run: echo "🖥️ The workflow is now ready to test your code on the runner." run: zola build
- name: List files in the repository - name: Upload
run: | uses: wangyucode/sftp-upload-action@v2.0.2
ls ${{ gitea.workspace }} with:
- run: echo "🍏 This job's status is ${{ job.status }}." host: 'suhail.uberspace.de'
username: 'aproksha'
password: ${{ secrets.password }}
localDir: 'public'
remoteDir: '/var/www/virtual/aproksha/html/'