You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
56 lines
1.5 KiB
56 lines
1.5 KiB
# See https://docs.earthly.dev/ci-integration/vendor-specific-guides/gh-actions-integration |
|
# for details. |
|
|
|
name: Build development container |
|
|
|
on: |
|
schedule: |
|
- cron: '0 2 * * *' |
|
push: |
|
branches: |
|
- develop |
|
pull_request: |
|
branches: |
|
- develop |
|
|
|
jobs: |
|
Earthly: |
|
runs-on: ubuntu-latest |
|
steps: |
|
- name: Set up Earthly |
|
uses: earthly/actions-setup@v1 |
|
with: |
|
version: 'latest' # or pin to an specific version, e.g. "v0.6.10" |
|
|
|
- name: Log Earthly version |
|
run: earthly --version |
|
|
|
- name: Authenticate to GitHub Container Registry |
|
if: ${{ github.event_name == 'schedule' && env.GH_CR_PAT != null }} |
|
env: |
|
GH_CR_PAT: ${{ secrets.GH_CR_PAT }} |
|
run: echo "${{ secrets.GH_CR_PAT }}" | docker login https://ghcr.io -u ${{ github.actor }} --password-stdin |
|
|
|
- name: Set up QEMU |
|
uses: docker/setup-qemu-action@v2 |
|
with: |
|
image: tonistiigi/binfmt:latest |
|
platforms: all |
|
|
|
- name: Checkout repo |
|
uses: actions/checkout@v3 |
|
with: |
|
fetch-depth: 0 |
|
|
|
- name: Build and push |
|
if: ${{ github.event_name == 'schedule' && env.GH_CR_PAT != null }} |
|
env: |
|
GH_CR_PAT: ${{ secrets.GH_CR_PAT }} |
|
EARTHLY_BUILD_TAG: 'nightly' |
|
EARTHLY_BUILD_BRANCH: 'develop' |
|
EARTHLY_PUSH: true |
|
uses: nick-fields/retry@v2 |
|
with: |
|
timeout_minutes: 20 |
|
max_attempts: 3 |
|
command: ./build/develop/container.sh
|
|
|