From 3421a78f5490d62c940e5d08e3f504b7e3de1415 Mon Sep 17 00:00:00 2001 From: Xe Iaso Date: Thu, 19 Sep 2024 10:49:35 -0400 Subject: [PATCH] add earthly sattelite Signed-off-by: Xe Iaso --- .gitea/workflows/earthly.yml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.gitea/workflows/earthly.yml b/.gitea/workflows/earthly.yml index ef90617..ac2022e 100644 --- a/.gitea/workflows/earthly.yml +++ b/.gitea/workflows/earthly.yml @@ -10,14 +10,18 @@ jobs: tests: name: example earthly test runs-on: ubuntu-latest + env: + EARTHLY_TOKEN: ${{ secrets.EARTHLY_TOKEN }} steps: - uses: earthly/actions-setup@v1 with: version: "latest" # or pin to an specific version, e.g. "0.8.1" - - uses: actions/checkout@v2 + - uses: actions/checkout@v4 - name: Docker login # to avoid dockerhub rate-limiting run: docker login --username "${{ secrets.DOCKERHUB_USERNAME }}" --password "${{ secrets.DOCKERHUB_PASSWORD }}" - name: what version is installed? run: earthly --version + - name: use sattelite Alpha + run: earthly sat select alpha - name: run the earthly hello world run: earthly github.com/earthly/hello-world:main+hello \ No newline at end of file