pantry/.github/workflows/cd.yml

95 lines
2.7 KiB
YAML
Raw Normal View History

name: cd
2023-03-16 15:33:53 +03:00
run-name: 'cd: ${{ github.event.head_commit.message }}'
on:
push:
branches: [main]
jobs:
cd:
runs-on: ubuntu-latest
2023-01-06 03:19:09 +03:00
outputs:
2023-02-25 00:03:59 +03:00
has-artifacts: ${{ steps.has-artifacts.outputs.has-artifacts }}
steps:
- uses: actions/checkout@v3
- uses: teaxyz/brewkit/actions/setup-brewkit@v0
- uses: teaxyz/brewkit/actions/has-artifacts@v0
2023-02-25 00:03:59 +03:00
id: has-artifacts
with:
repo: ${{ github.repository }}
sha: ${{ github.sha }}
token: ${{github.token}}
s3-bucket: ${{ secrets.AWS_S3_CACHE }}
aws-access-key-id: ${{ secrets.AWS_ACCESS_KEY_ID }}
aws-secret-access-key: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
2023-02-04 03:52:04 +03:00
2023-01-06 02:32:56 +03:00
bottle-pr:
2023-02-04 03:52:04 +03:00
strategy:
fail-fast: false
matrix:
platform:
- darwin+x86-64
- linux+x86-64
- darwin+aarch64
- linux+aarch64
2023-01-06 03:19:09 +03:00
needs: [cd]
2023-02-25 00:03:59 +03:00
if: ${{ needs.cd.outputs.has-artifacts == 'true' }}
uses: ./.github/workflows/bottle.yml
2023-02-04 03:52:04 +03:00
with:
platform: ${{ matrix.platform }}
secrets: inherit
2023-02-11 14:06:35 +03:00
cleanup:
needs: [bottle-pr]
runs-on: ubuntu-latest
2023-02-25 00:03:59 +03:00
if: ${{ needs.cd.outputs.has-artifacts == 'true' }}
env:
PR: ${{ needs.bottle.outputs.pr }}
steps:
- name: Configure AWS Credentials
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
- run: |
REPO=$(echo ${{github.repository}} | sed -e 's_teaxyz/__')
if test -z "$PR"; then
echo "no PR to clean up"
exit 0
fi
aws s3 rm --recursive s3://$AWS_S3_CACHE/pull-request/$REPO/$PR
env:
AWS_S3_CACHE: ${{ secrets.AWS_S3_CACHE }}
PR: ${{ needs.bottle.outputs.pr }}
2023-02-11 14:06:35 +03:00
2023-01-06 02:32:56 +03:00
bottle-standalone:
runs-on: ubuntu-latest
2023-01-06 03:19:09 +03:00
needs: [cd]
permissions:
contents: read
actions: write
2023-02-25 00:03:59 +03:00
if: ${{ needs.cd.outputs.has-artifacts == 'false' }}
2023-01-06 02:32:56 +03:00
steps:
- uses: actions/checkout@v3
- uses: technote-space/get-diff-action@v6
2023-02-13 17:28:03 +03:00
id: get-diff
2023-01-06 02:32:56 +03:00
with:
PATTERNS: projects/**/package.yml
2023-02-13 17:28:03 +03:00
- id: diff
run: |
for x in ${{ steps.get-diff.outputs.diff }}; do
y=$(echo $x | sed 's#projects/\(.*\)/package.yml#\1#')
RESULT="$RESULT $y"
done
2023-02-13 17:28:03 +03:00
echo "diff=$RESULT" >> $GITHUB_OUTPUT
- run: gh workflow run new-version.yml -f "projects=$PROJECTS"
2023-01-06 03:19:09 +03:00
if: ${{ steps.diff.outputs.diff != '' }}
2023-01-06 02:32:56 +03:00
env:
2023-03-15 00:41:46 +03:00
GH_TOKEN: ${{ github.token }}
2023-01-06 02:32:56 +03:00
PROJECTS: ${{ steps.diff.outputs.diff }}