Skip to content

Commit

Permalink
Test workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
Irae Hueck Costa committed Jan 22, 2024
1 parent 61d7878 commit a287535
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,14 +9,17 @@ on:
jobs:
deploy:
runs-on: ubuntu-latest
container:
image: ubuntu:latest
options: --sysctl net.ipv6.conf.all.disable_ipv6=0
steps:
- env:
SSH_PRIVATE_KEY: "${{secrets.SSH_PRIVATE_KEY}}"
name: "Create SSH key"
run: |
mkdir -p ~/.ssh/
echo "$SSH_PRIVATE_KEY" > ~/.ssh/private.key
sudo chmod 600 ~/.ssh/private.key
chmod 600 ~/.ssh/private.key
shell: bash

- name: "Checkout"
Expand All @@ -26,7 +29,7 @@ jobs:
uses: actions/setup-python@v2

- name: "Install markdown"
run: sudo apt-get update && sudo apt-get install -y markdown
run: apt-get update && apt-get install -y markdown

- name: "Install pelican"
run: pip3 install pelican Markdown
Expand Down

0 comments on commit a287535

Please sign in to comment.