forked from TrueCloudLab/frostfs.info
[#25] Deploy the site via SSH
Signed-off-by: Vitaliy Potyarkin <v.potyarkin@yadro.com>
This commit is contained in:
parent
5c0e84017d
commit
6a63f03edf
2 changed files with 32 additions and 11 deletions
|
@ -30,15 +30,31 @@ jobs:
|
||||||
rm -rf themes/dot-hugo
|
rm -rf themes/dot-hugo
|
||||||
make all
|
make all
|
||||||
|
|
||||||
- uses: https://code.forgejo.org/forgejo/upload-artifact@v4
|
- name: Fake DNS name for development # TODO: remove this step after switching DNS records
|
||||||
id: artifact-upload-step
|
|
||||||
with:
|
|
||||||
name: site
|
|
||||||
path: |
|
|
||||||
public/
|
|
||||||
if-no-files-found: error
|
|
||||||
retention-days: 10
|
|
||||||
|
|
||||||
- name: Show artifact URL
|
|
||||||
run: |
|
run: |
|
||||||
echo 'Download URL: ${{ github.server_url }}/${{ github.repository }}/actions/runs/${{ github.run_id }}/artifacts/${{ steps.artifact-upload-step.outputs.artifact-id }}'
|
echo '185.73.212.7 frostfs.info' >> /etc/hosts
|
||||||
|
curl -v --head frostfs.info
|
||||||
|
|
||||||
|
- name: Setup SSH environment
|
||||||
|
if: ${{ github.event_name == 'push' && github.ref == 'refs/heads/master' }}
|
||||||
|
env:
|
||||||
|
SSH_AUTH_SOCK: /tmp/ssh_agent.socket
|
||||||
|
run: |
|
||||||
|
umask 0077
|
||||||
|
mkdir -p ~/.ssh/
|
||||||
|
ssh-keyscan frostfs.info >> ~/.ssh/known_hosts
|
||||||
|
ssh-keygen -A # create host keys
|
||||||
|
ssh-agent -a "$SSH_AUTH_SOCK"
|
||||||
|
echo "${{ secrets.SSH_DEPLOY_KEY }}" > ~/.ssh/key
|
||||||
|
stat ~/.ssh/key
|
||||||
|
ssh-keygen -y -f ~/.ssh/key
|
||||||
|
ssh-add ~/.ssh/key
|
||||||
|
rm ~/.ssh/key
|
||||||
|
|
||||||
|
- name: make deploy
|
||||||
|
if: ${{ github.event_name == 'push' && github.ref == 'refs/heads/master' }}
|
||||||
|
run: |
|
||||||
|
ssh-add -L
|
||||||
|
make deploy
|
||||||
|
env:
|
||||||
|
SSH_AUTH_SOCK: /tmp/ssh_agent.socket
|
||||||
|
|
5
Makefile
5
Makefile
|
@ -27,3 +27,8 @@ server: submodules $(HUGO_BIN)
|
||||||
submodules:
|
submodules:
|
||||||
@git submodule init
|
@git submodule init
|
||||||
@git submodule update --recursive --remote
|
@git submodule update --recursive --remote
|
||||||
|
|
||||||
|
.PHONY: deploy
|
||||||
|
deploy:
|
||||||
|
test -f public/index.html
|
||||||
|
cd public && tar --gzip --create . | ssh deploy@frostfs.info frostfs.info
|
||||||
|
|
Loading…
Reference in a new issue