docs start #69
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: GH-Actions-Satellites | |
on: | |
push: | |
branches: | |
- "main" | |
pull_request: | |
branches: | |
- "main" | |
jobs: | |
satellites-build: | |
runs-on: ubuntu-latest | |
env: | |
DOCKERHUB_USERNAME: ${{ secrets.DOCKERHUB_USERNAME }} | |
DOCKERHUB_TOKEN: ${{ secrets.DOCKERHUB_TOKEN }} | |
EARTHLY_TOKEN: ${{ secrets.EARTHLY_TOKEN }} | |
EARTHLY_ORG: ${{ secrets.EARTHLY_ORG }} | |
SATELLITE_NAME: ${{ secrets.SATELLITE_NAME }} | |
# FLY_API_TOKEN: ${{ secrets.FLY_API_TOKEN }} | |
FORCE_COLOR: 1 | |
EARTHLY_LOGSTREAM_UPLOAD: true | |
steps: | |
- uses: earthly/actions/setup-earthly@v1 | |
with: | |
version: v0.7.9 | |
- uses: actions/checkout@v2 | |
- name: Put back the git branch into git (Earthly uses it for tagging) | |
run: | | |
branch="" | |
if [ -n "$GITHUB_HEAD_REF" ]; then | |
branch="$GITHUB_HEAD_REF" | |
else | |
branch="${GITHUB_REF##*/}" | |
fi | |
git checkout -b "$branch" || true | |
- name: Docker Login | |
run: docker login --username "$DOCKERHUB_USERNAME" --password "$DOCKERHUB_TOKEN" | |
- name: Earthly version | |
run: earthly --version | |
- name: Run CI pipeline | |
run: "earthly --ci --sat $SATELLITE_NAME --org $EARTHLY_ORG --push +main" |