Skip to content

Commit

Permalink
fix: include examples (#682)
Browse files Browse the repository at this point in the history
  • Loading branch information
thesayyn committed Aug 27, 2024
1 parent a32f3bf commit ec55eb4
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 4 deletions.
3 changes: 0 additions & 3 deletions .gitattributes
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,3 @@ docs/load.md linguist-generated=true
#################################
# Configuration for 'git archive'
# See https://git-scm.com/docs/git-archive#ATTRIBUTES

# Don't include examples in the distribution artifact, to reduce size.
examples export-ignore
2 changes: 2 additions & 0 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -127,6 +127,8 @@ jobs:
wait: true
token: ${{ secrets.TC_CLOUD_TOKEN }}

- run: man xargs

- name: Configure Remote Docker Host
if: ${{ matrix.os == 'macos-13' }}
run: |
Expand Down
2 changes: 1 addition & 1 deletion oci/private/push.sh.tpl
Original file line number Diff line number Diff line change
Expand Up @@ -60,5 +60,5 @@ do
done

if [[ -e "${TAGS_FILE:-}" ]]; then
cat "${TAGS_FILE}" | xargs --no-run-if-empty -n1 "${CRANE}" tag ${VERBOSE} $(cat "${REFS}")
cat "${TAGS_FILE}" | xargs -r -n1 "${CRANE}" tag ${VERBOSE} $(cat "${REFS}")
fi

0 comments on commit ec55eb4

Please sign in to comment.