Signed-off-by: Xe Iaso <me@xeiaso.net>
This commit is contained in:
Xe Iaso 2024-09-19 11:59:13 -04:00
parent 867c9ae94a
commit 03a22f9f12
Signed by: xe
SSH Key Fingerprint: SHA256:4VmLEcSFkJqNVktQ6/3CA2uSk8wGZ8VEzLmTQTyjngM

View File

@ -17,7 +17,7 @@ jobs:
- name: "Install Earthly"
run: |
sudo apt-get update
sudo apt-get install \
sudo apt-get install -y \
apt-transport-https \
ca-certificates \
curl \
@ -28,7 +28,7 @@ jobs:
"deb [arch=amd64 signed-by=/usr/share/keyrings/earthly-archive-keyring.gpg] https://pkg.earthly.dev/deb \
stable main" | sudo tee /etc/apt/sources.list.d/earthly.list > /dev/null
sudo apt-get update
sudo apt-get install earthly
sudo apt-get install -y earthly
- uses: actions/checkout@v4
- name: Docker login # to avoid dockerhub rate-limiting
run: docker login --username "${{ secrets.DOCKERHUB_USERNAME }}" --password "${{ secrets.DOCKERHUB_PASSWORD }}"