use alpine
This commit is contained in:
parent
4044153abb
commit
2c9290ba88
1 changed files with 5 additions and 1 deletions
|
@ -7,11 +7,15 @@ on:
|
||||||
jobs:
|
jobs:
|
||||||
update-feed:
|
update-feed:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
|
container:
|
||||||
|
image: alpine:latest
|
||||||
steps:
|
steps:
|
||||||
- name: Install Dependencies
|
- name: Install Dependencies
|
||||||
run: |
|
run: |
|
||||||
|
# Ensure we have the necessary tools to install packages
|
||||||
apk update
|
apk update
|
||||||
apk add --no-cache \
|
apk add --no-cache \
|
||||||
|
build-base \
|
||||||
openssh-client \
|
openssh-client \
|
||||||
git \
|
git \
|
||||||
curl \
|
curl \
|
||||||
|
@ -26,7 +30,7 @@ jobs:
|
||||||
chmod 600 ~/.ssh/id_rsa
|
chmod 600 ~/.ssh/id_rsa
|
||||||
ssh-keyscan git.mcdevitt.tech >> ~/.ssh/known_hosts
|
ssh-keyscan git.mcdevitt.tech >> ~/.ssh/known_hosts
|
||||||
ssh-keygen -F git.mcdevitt.tech || true
|
ssh-keygen -F git.mcdevitt.tech || true
|
||||||
|
|
||||||
- name: Checkout repository
|
- name: Checkout repository
|
||||||
run: |
|
run: |
|
||||||
GIT_SSH_COMMAND="ssh -o StrictHostKeyChecking=no" \
|
GIT_SSH_COMMAND="ssh -o StrictHostKeyChecking=no" \
|
||||||
|
|
Loading…
Add table
Reference in a new issue