Signed-off-by: Xe Iaso <me@xeiaso.net>
This commit is contained in:
Xe Iaso 2024-09-19 10:55:05 -04:00
parent 8154a94e72
commit f497155341
Signed by: xe
SSH Key Fingerprint: SHA256:7EWsWanxCI427bJ0t3CA6LyqXnkPajReCxkUhbpJULU

View File

@ -19,10 +19,17 @@ jobs:
- uses: actions/checkout@v4 - uses: actions/checkout@v4
- name: Docker login # to avoid dockerhub rate-limiting - name: Docker login # to avoid dockerhub rate-limiting
run: docker login --username "${{ secrets.DOCKERHUB_USERNAME }}" --password "${{ secrets.DOCKERHUB_PASSWORD }}" run: docker login --username "${{ secrets.DOCKERHUB_USERNAME }}" --password "${{ secrets.DOCKERHUB_PASSWORD }}"
- name: Log into ghcr.io
uses: docker/login-action@343f7c4344506bcbf9b4de18042ae17996df046d # v3.0.0
with:
registry: ghcr.io
username: xe
password: ${{ secrets.GHCR_TOKEN }}
- name: what version is installed? - name: what version is installed?
run: earthly --version run: earthly --version
- name: use sattelite Alpha - name: use sattelite Alpha
run: | run: |
earthly bootstrap
earthly org select me-2625 earthly org select me-2625
earthly sat select alpha earthly sat select alpha
- name: run the earthly hello world - name: run the earthly hello world