-
Notifications
You must be signed in to change notification settings - Fork 1.4k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
159 changed files
with
6,256 additions
and
5,114 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
root: | ||
./docs/ | ||
redirects: | ||
pantry: pantry.md | ||
shell-integration: shell-integration.md | ||
shellcode: shell-integration.md | ||
getting-started: run/anywhere/terminals.md | ||
quickstart: run/anywhere/terminals.md | ||
installing-w/out-brew: run/anywhere/terminals.md | ||
docker: run/anywhere/docker.md | ||
ci-cd: run/anywhere/ci-cd.md | ||
scripts: run/anywhere/scripts.md | ||
editors: run/anywhere/editors.md | ||
tea-install: tea-install.md | ||
support: support.md |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
FROM debian:buster-slim as stage0 | ||
COPY ./products /tea | ||
RUN cp /tea/$(uname)+$(uname -m) /usr/local/bin/tea | ||
RUN tea integrate | ||
|
||
FROM debian:buster-slim as stage1 | ||
COPY --from=stage0 /usr/local/bin/tea /usr/local/bin/tea | ||
COPY --from=stage0 /root/.bash_profile /root/.bash_profile | ||
CMD ["bash"] |
This file was deleted.
Oops, something went wrong.
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
name: cd·brew | ||
|
||
on: | ||
release: | ||
types: | ||
- published | ||
|
||
concurrency: | ||
group: cd/docker/${{ github.event.release.tag_name }} | ||
cancel-in-progress: true | ||
|
||
jobs: | ||
bump-tap: | ||
needs: release | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: aurelien-baudet/workflow-dispatch@v2 | ||
with: | ||
workflow: bump.yml | ||
repo: teaxyz/homebrew-pkgs | ||
ref: main | ||
token: ${{secrets.TEMP_JACOBS_GITHUB_PAT}} |
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
This file was deleted.
Oops, something went wrong.
11 changes: 9 additions & 2 deletions
11
.github/workflows/vx-tagger.yml → .github/workflows/cd.vx.yml
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,59 @@ | ||
name: cd·www | ||
|
||
# the binaries for curl tea.xyz/$(uname)/$(uname -m) | ||
|
||
on: | ||
release: | ||
types: | ||
- published | ||
|
||
concurrency: | ||
group: cd/www/${{ github.event.release.tag_name }} | ||
cancel-in-progress: true | ||
|
||
jobs: | ||
www-upload: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: robinraju/release-downloader@v1 | ||
with: | ||
releaseId: ${{ github.event.release.id }} | ||
|
||
- uses: aws-actions/configure-aws-credentials@v1 | ||
with: | ||
aws-access-key-id: ${{ secrets.AWS_ACCESS_KEY_ID }} | ||
aws-secret-access-key: ${{ secrets.AWS_SECRET_ACCESS_KEY }} | ||
aws-region: us-east-1 | ||
|
||
- name: Unpack Binaries | ||
run: | | ||
for filename in tea-*+*+*.tar.xz; do | ||
tar xJf $filename | ||
result="${filename#*+}" | ||
result="${result%.tar.xz}" | ||
mv tea tea-$result | ||
rm $filename | ||
done | ||
- name: Upload to S3 | ||
run: | | ||
aws s3 cp tea-darwin+aarch64 s3://www.tea.xyz/Darwin/arm64 $FLAGS | ||
aws s3 cp tea-darwin+x86-64 s3://www.tea.xyz/Darwin/x86_64 $FLAGS | ||
aws s3 cp tea-linux+aarch64 s3://www.tea.xyz/Linux/arm64 $FLAGS | ||
aws s3 cp tea-linux+aarch64 s3://www.tea.xyz/Linux/aarch64 $FLAGS # some linuxen say this instead | ||
aws s3 cp tea-linux+x86-64 s3://www.tea.xyz/Linux/x86_64 $FLAGS | ||
env: | ||
FLAGS: --metadata-directive REPLACE --cache-control "max-age=3600, must-revalidate" | ||
|
||
- name: Invalidate CloudFront | ||
run: | ||
aws cloudfront create-invalidation | ||
--distribution-id ${{ secrets.AWS_CF_DISTRIBUTION_ID }} | ||
--paths $STATIC_PATHS | ||
env: | ||
STATIC_PATHS: >- | ||
/Darwin/arm64 | ||
/Darwin/x86_64 | ||
/Linux/arm64 | ||
/Linux/aarch64 | ||
/Linux/x86_64 |
Oops, something went wrong.