Compare commits

Author SHA1 Message Date
kovagoadi 59668b6857 undo changes
Remote Deployment Pipeline / Prepare deployment vars (pull_request) Successful in 2s
Remote Deployment Pipeline / Create remote directory (pull_request) Failing after 7s
Remote Deployment Pipeline / Cleanup MR environment (pull_request) Has been skipped
Remote Deployment Pipeline / Sync repository files (pull_request) Has been skipped
Remote Deployment Pipeline / Run docker-compose remotely (pull_request) Has been skipped
2025-10-28 13:29:51 +01:00
kovagoadi 515b8735ae Test
Remote Deployment Pipeline / Prepare deployment vars (pull_request) Successful in 2s
Remote Deployment Pipeline / Create remote directory (pull_request) Failing after 8s
Remote Deployment Pipeline / Cleanup MR environment (pull_request) Has been skipped
Remote Deployment Pipeline / Sync repository files (pull_request) Has been skipped
Remote Deployment Pipeline / Run docker-compose remotely (pull_request) Has been skipped
2025-10-28 13:27:52 +01:00
renovate-bot f7ca32cb4a Pin nginx Docker tag to a529900
Remote Deployment Pipeline / Prepare deployment vars (pull_request) Successful in 2s
Remote Deployment Pipeline / Create remote directory (pull_request) Failing after 7s
Remote Deployment Pipeline / Cleanup MR environment (pull_request) Has been skipped
Remote Deployment Pipeline / Sync repository files (pull_request) Has been skipped
Remote Deployment Pipeline / Run docker-compose remotely (pull_request) Has been skipped
2025-10-28 06:36:41 +00:00
5 changed files with 28 additions and 17 deletions
+15
View File
@@ -0,0 +1,15 @@
name: Hello world
on:
- push
jobs:
say-hello:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Print hello
run: echo "Hello, world! from Gitea Actions"
+6 -7
View File
@@ -9,7 +9,7 @@ on:
env: env:
# Base path for PR preview environments # Base path for PR preview environments
REMOTE_DEPLOY_PATH: /var/app/test/test REMOTE_DEPLOY_PATH: /var/app/test
# --- CUSTOMIZABLE PRODUCTION PATH --- # --- CUSTOMIZABLE PRODUCTION PATH ---
# Set the absolute path for your production deployment on the remote server. # Set the absolute path for your production deployment on the remote server.
@@ -52,7 +52,7 @@ jobs:
|| github.ref == 'refs/heads/main' || github.ref == 'refs/heads/main'
steps: steps:
- name: Setup SSH - name: Setup SSH
uses: webfactory/ssh-agent@e83874834305fe9a4a2997156cb26c5de65a8555 # v0.10.0 uses: webfactory/ssh-agent@v0.9.0
with: with:
ssh-private-key: ${{ env.SSH_PRIVATE_KEY }} ssh-private-key: ${{ env.SSH_PRIVATE_KEY }}
@@ -77,11 +77,10 @@ jobs:
(github.event_name == 'pull_request' && github.event.action != 'closed' && github.event.pull_request.merged == false) (github.event_name == 'pull_request' && github.event.action != 'closed' && github.event.pull_request.merged == false)
|| github.ref == 'refs/heads/main' || github.ref == 'refs/heads/main'
steps: steps:
- name: Checkout repository - uses: actions/checkout@v4
uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7
- name: Sync files via scp - name: Sync files via scp
uses: appleboy/scp-action@7e85c2e09aa21988492acd66466b5d68bda49e2b # master uses: appleboy/scp-action@master
with: with:
host: ${{ env.SSH_HOST }} host: ${{ env.SSH_HOST }}
username: ${{ env.SSH_USER }} username: ${{ env.SSH_USER }}
@@ -99,7 +98,7 @@ jobs:
|| github.ref == 'refs/heads/main' || github.ref == 'refs/heads/main'
steps: steps:
- name: Setup SSH - name: Setup SSH
uses: webfactory/ssh-agent@e83874834305fe9a4a2997156cb26c5de65a8555 # v0.10.0 uses: webfactory/ssh-agent@v0.9.0
with: with:
ssh-private-key: ${{ env.SSH_PRIVATE_KEY }} ssh-private-key: ${{ env.SSH_PRIVATE_KEY }}
@@ -125,7 +124,7 @@ jobs:
(github.event.action == 'closed' || github.event.pull_request.merged == true) (github.event.action == 'closed' || github.event.pull_request.merged == true)
steps: steps:
- name: Setup SSH - name: Setup SSH
uses: webfactory/ssh-agent@e83874834305fe9a4a2997156cb26c5de65a8555 # v0.10.0 uses: webfactory/ssh-agent@v0.9.0
with: with:
ssh-private-key: ${{ env.SSH_PRIVATE_KEY }} ssh-private-key: ${{ env.SSH_PRIVATE_KEY }}
+1
View File
@@ -0,0 +1 @@
Random file, ami remélhetőleg megjelenik
+1 -1
View File
@@ -1,7 +1,7 @@
version: "3.9" version: "3.9"
services: services:
web: web:
image: nginx:1.31.6-alpine-slim@sha256:b54a1a3219e4b8b90fd4d5d383af7f8843a7b34a8079897cb83487a6a3e1aff3 image: nginx:1.27.0-alpine3.19-slim@sha256:a529900d9252ce5d04531a4a594f93736dbbe3ec155a692d10484be82aaa159a
ports: ports:
- "80" - "80"
volumes: volumes:
+4 -8
View File
@@ -3,13 +3,9 @@
"extends": [ "extends": [
"config:recommended" "config:recommended"
], ],
// "packageRules": [ "packageRules": [{
// { "docker": {
// "matchCategories": [
// "docker"
// ],
// "pinDigests": true
// }
// ],
"pinDigests": true "pinDigests": true
}
}]
} }