feat: Use COPY syntax for files module #60
Workflow file for this run
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: Earthly PR +build | |
on: | |
pull_request: | |
env: | |
FORCE_COLOR: 1 | |
jobs: | |
build: | |
timeout-minutes: 60 | |
runs-on: ubuntu-latest | |
steps: | |
# There is a bug selecting a satellite in version 0.8 | |
# so we use 0.7 to login and connect to the satellite | |
# before switching to the latest version | |
- uses: earthly/actions-setup@v1 | |
with: | |
version: v0.7.23 | |
- name: Earthly login | |
run: | | |
earthly account login --token ${{ secrets.EARTHLY_SAT_TOKEN }} >> /dev/null | |
earthly org s blue-build | |
earthly sat s blue-build-pr | |
- uses: earthly/actions-setup@v1 | |
with: | |
version: v0.8.2 | |
- uses: actions/checkout@v4 | |
with: | |
ref: ${{ github.event.pull_request.ref }} | |
- name: Run build | |
run: earthly --ci -P +build | |