diff --git a/.gitea/workflows/main-build.yaml b/.gitea/workflows/main-build.yaml index 4fec62d..ac67292 100644 --- a/.gitea/workflows/main-build.yaml +++ b/.gitea/workflows/main-build.yaml @@ -9,20 +9,17 @@ jobs: build-or-sth: runs-on: ubuntu-latest steps: - - run: echo "hi!" - name: Clone repo run: git clone --recurse-submodules https://git.emin.software/haxala1r/blog.git --depth=1 . - name: Get hugo - run: wget https://github.com/gohugoio/hugo/releases/download/v0.131.0/hugo_extended_0.131.0_linux-amd64.tar.gz -O hugo.tar.gz - - run: tar xzvf hugo.tar.gz - - run: id - - run: ls -la ~/ - - name: build - run: ./hugo - - name: deploy run: | - echo "${{ secrets.SSH_KEY }}" > /tmp/id + wget https://github.com/gohugoio/hugo/releases/download/v0.131.0/hugo_extended_0.131.0_linux-amd64.tar.gz -O hugo.tar.gz + tar xzvf hugo.tar.gz + - name: Build + run: ./hugo + - name: Deploy + run: | + echo "${{ secrets.SSH_KEY }}" > ~/.ssh/id chmod 600 /tmp/id - mkdir -p ~/.ssh/ - ssh-keyscan emin.software > ~/.ssh/known_hosts - scp -oUser=${{secrets.SSH_USER}} -i /tmp/id -r public/* emin.software:/home/${{ secrets.SSH_USER }}/web/web/ + ssh-keyscan emin.software > ~/.ssh/known_hosts + scp -oUser=${{secrets.SSH_USER}} -i ~/.ssh/id -r public/* emin.software:${{secrets.WEB_PATH}} diff --git a/content/posts/it_works.md b/content/posts/it_works.md deleted file mode 100644 index 8d3a6a9..0000000 --- a/content/posts/it_works.md +++ /dev/null @@ -1,7 +0,0 @@ -+++ -title = 'Itworks' -date = 2024-11-16T15:54:33+03:00 -draft = false -+++ - -HAHA THE CI WORKFLOW WORKS!!!!