Compare commits

...

31 Commits

Author SHA1 Message Date
1780bfaee6
supress confirmation prompts
All checks were successful
Intranet Deployment / Deploy Project files (push) Successful in 2m0s
2024-08-14 12:31:59 -05:00
ee91fa9954
correct vars context
Some checks failed
Intranet Deployment / Deploy Project files (push) Failing after 52s
2024-08-14 12:22:14 -05:00
69a42df8c6
echo deploy dir
Some checks failed
Intranet Deployment / Deploy Project files (push) Has been cancelled
2024-08-14 12:21:24 -05:00
c2c82a1191
formatting change
All checks were successful
Intranet Deployment / Deploy Project files (push) Successful in 1m3s
2024-08-14 12:14:51 -05:00
5124b6139b
flow test
All checks were successful
Gitea Actions Demo / Deploy Project files (push) Successful in 52s
2024-08-14 12:08:22 -05:00
aee592e023
copy command restruct
All checks were successful
Gitea Actions Demo / Deploy Project files (push) Successful in 53s
2024-08-14 10:59:09 -05:00
32307aa504
rename deploy flow
All checks were successful
Gitea Actions Demo / Deploy Project files (push) Successful in 48s
2024-08-14 10:45:52 -05:00
063e8fc113
remove faulty mkdir call 2024-08-14 10:43:55 -05:00
7493e43424 add deploy runner status badge
All checks were successful
Gitea Actions Demo / Deploy Project files (push) Successful in 50s
2024-08-14 15:31:50 +00:00
326c7fe1aa Merge pull request 'Implement Article navbutton fix' (#2) from navbar-fix into master
All checks were successful
Gitea Actions Demo / Deploy Project files (push) Successful in 51s
Reviewed-on: #2
2024-08-14 15:20:29 +00:00
d172aec5e0
remove redundant cache refresh
All checks were successful
Gitea Actions Demo / Deploy Project files (push) Successful in 47s
2024-08-14 10:03:13 -05:00
a301f19bf8
require symfony runtime 2024-08-14 10:02:49 -05:00
fa2fe652a8
set composer work dir
Some checks failed
Gitea Actions Demo / Deploy Project files (push) Failing after 52s
2024-08-14 10:00:43 -05:00
afaefb7978
correct var access context
Some checks failed
Gitea Actions Demo / Deploy Project files (push) Failing after 7m33s
2024-08-14 09:43:47 -05:00
f859b7bfd4
completed deployment workflow
Some checks failed
Gitea Actions Demo / Deploy Project files (push) Failing after 56s
2024-08-14 09:38:03 -05:00
3195e8e00e
gitea issues plugin config 2024-08-14 09:37:58 -05:00
85ad3fc91f
host key officially good 2024-08-14 08:48:35 -05:00
044e1077da
nothing new
All checks were successful
Gitea Actions Demo / Deploy (push) Successful in 1m8s
2024-08-14 08:41:47 -05:00
2dc2bf95dd
another host attempt
Some checks are pending
Gitea Actions Demo / Deploy (push) Waiting to run
2024-08-14 08:38:27 -05:00
f04dae3da0
correct public host key
Some checks failed
Gitea Actions Demo / Deploy (push) Has been cancelled
2024-08-14 08:22:12 -05:00
1357d3c211
add gitea public key to known hosts
Some checks failed
Gitea Actions Demo / Deploy (push) Has been cancelled
2024-08-14 08:17:00 -05:00
Audrey Jensen
90f5d20100
disable strict checking
Some checks failed
Gitea Actions Demo / Deploy (push) Has been cancelled
2024-08-13 15:53:57 -05:00
Audrey Jensen
ba7fc83cef
set correct known hosts
Some checks failed
Gitea Actions Demo / Deploy (push) Failing after 54s
2024-08-13 15:52:32 -05:00
Audrey Jensen
5ac9649ef8
set known hosts 2024-08-13 15:51:05 -05:00
Audrey Jensen
97afd7358b
no strict ssh host
All checks were successful
Gitea Actions Demo / Deploy (push) Successful in 58s
2024-08-13 15:34:39 -05:00
Audrey Jensen
576ccdd9eb
read deploy key
Some checks failed
Gitea Actions Demo / Deploy (push) Has been cancelled
2024-08-13 15:33:06 -05:00
Audrey Jensen
e6c34925ef
fix trigger
Some checks failed
Gitea Actions Demo / Deploy (push) Failing after 59s
2024-08-13 15:13:39 -05:00
Audrey Jensen
5af977dd31
remove demo 2024-08-13 15:12:29 -05:00
Audrey Jensen
ae7adb2d91
testing repo pull
Some checks are pending
Gitea Actions Demo / Explore-Gitea-Actions (push) Waiting to run
2024-08-13 15:10:42 -05:00
Audrey Jensen
e86ff3ebdc
fix label
Some checks failed
Gitea Actions Demo / Explore-Gitea-Actions (push) Failing after 46s
2024-08-13 14:56:56 -05:00
Audrey Jensen
f81bb0e88e
demo runner
Some checks are pending
Gitea Actions Demo / Explore-Gitea-Actions (push) Waiting to run
2024-08-13 14:55:54 -05:00
2 changed files with 7 additions and 9 deletions

View File

@ -1,5 +1,5 @@
name: Gitea Actions Demo
run-name: ${{ gitea.actor }} is testing out Gitea Actions 🚀
name: Intranet Deployment
on:
push:
branches:
@ -16,12 +16,8 @@ jobs:
SSH-KEY: ${{secrets.read_key}}
SSH-KNOWN-HOSTS: gitea.jv.com,192.168.0.214 ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBHsv90d6ofdNgJx0W6zPTVpouqDeF/qv/L0guzFBg6YON4jiubCovUZ0h7M8ipg/kXACHLfNBWAmNvsaGrPpHNU=
SSH-STRICT: 'false'
- name: Copy files to project dir
run: |
mkdir ${{ var.PROD_DEPLOY_DIR }}
xcopy /E /I . ${{ var.PROD_DEPLOY_DIR }}
run: xcopy /E /I /Y /V . ${{ vars.PROD_DEPLOY_DIR }}
- name: Update Composer Packages
working-directory: ${{ var.PROD_DEPLOY_DIR }}
run: composer update --no-interaction --working-dir=${{ var.PROD_DEPLOY_DIR }}
working-directory: ${{ vars.PROD_DEPLOY_DIR }}
run: composer update --no-interaction --working-dir=${{ vars.PROD_DEPLOY_DIR }}

View File

@ -1,3 +1,5 @@
![Deployed](https://gitea.jv.com/audrey/intranet/actions/workflows/deploy.yaml/badge.svg)
[Install](#install)
[Configuring IIS](#iis-configuration)
[Updating](#updating)