ppush
Some checks failed
CI/CD Pipeline / deploy-main (push) Failing after 7s

This commit is contained in:
philipp 2024-02-17 12:48:33 +01:00
parent 208d85ffe8
commit 54d562bd51
2 changed files with 6 additions and 14 deletions

View File

@ -8,31 +8,22 @@ env:
SSH_PRIVATE_KEY: ${{ secrets.SSH_PRIVATE_KEY }}
jobs:
test:
deploy-main:
runs-on: ubuntu-latest
container: git.hofer.link/ruderverein-donau-linz/rowing-ci:20240215
steps:
- uses: actions/checkout@v3
- name: Tests
run: cargo test --verbose
deploy:
runs-on: ubuntu-latest
container: git.hofer.link/ruderverein-donau-linz/rowing-ci:20240215
container: git.hofer.link/ruderverein-donau-linz/rowing-ci:20240118
if: github.ref == 'refs/heads/main'
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Deploy
- name: Deploy to production
run: |
mkdir -p ~/.ssh
ssh-keyscan -H $SSH_HOST >> ~/.ssh/known_hosts
echo "$SSH_PRIVATE_KEY" > ~/.ssh/id_rsa
chmod 600 ~/.ssh/id_rsa
scp ./output/* $SSH_USER@$SSH_HOST:/var/www/html/ris/
scp ./output/* $SSH_USER@$SSH_HOST:/var/www/html/recipes/
env:
SSH_PRIVATE_KEY: ${{ secrets.SSH_PRIVATE_KEY }}
SSH_HOST: ${{ secrets.SSH_HOST }}

3
.gitignore vendored
View File

@ -1,2 +1,3 @@
/target
.history
/output
.history