Skip to content

Commit 850e2af

Browse files
committed
Checkout with LFS
1 parent 48abdba commit 850e2af

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

.github/workflows/faucet.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,19 +20,24 @@ jobs:
2020
steps:
2121
- name: Checkout repository
2222
uses: actions/checkout@v4
23+
with:
24+
lfs: true
25+
2326
# Uses the `docker/login-action` action to log in to the Container registry registry using the account and password that will publish the packages. Once published, the packages are scoped to the account defined here.
2427
- name: Log in to the Container registry
2528
uses: docker/login-action@65b78e6e13532edd9afa3aa52ac7964289d1a9c1
2629
with:
2730
registry: ${{ env.REGISTRY }}
2831
username: ${{ github.actor }}
2932
password: ${{ secrets.GITHUB_TOKEN }}
33+
3034
# This step uses [docker/metadata-action](https://github.com/docker/metadata-action#about) to extract tags and labels that will be applied to the specified image. The `id` "meta" allows the output of this step to be referenced in a subsequent step. The `images` value provides the base name for the tags and labels.
3135
- name: Extract metadata (tags, labels) for Docker
3236
id: meta
3337
uses: docker/metadata-action@9ec57ed1fcdbf14dcef7dfbe97b2010124a938b7
3438
with:
3539
images: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}
40+
3641
# This step uses the `docker/build-push-action` action to build the image, based on your repository's `Dockerfile`. If the build succeeds, it pushes the image to GitHub Packages.
3742
# It uses the `context` parameter to define the build's context as the set of files located in the specified path. For more information, see [Usage](https://github.com/docker/build-push-action#usage) in the README of the `docker/build-push-action` repository.
3843
# It uses the `tags` and `labels` parameters to tag and label the image with the output from the "meta" step.

0 commit comments

Comments
 (0)