mirror of
https://github.com/home-assistant/operating-system.git
synced 2026-04-27 04:03:57 +01:00
Bumps [actions/setup-python](https://github.com/actions/setup-python) from 4 to 5. - [Release notes](https://github.com/actions/setup-python/releases) - [Commits](https://github.com/actions/setup-python/compare/v4...v5) --- updated-dependencies: - dependency-name: actions/setup-python dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
94 lines
3.1 KiB
YAML
94 lines
3.1 KiB
YAML
name: Update artifacts index
|
|
|
|
on:
|
|
# Manual run for specified version
|
|
workflow_dispatch:
|
|
inputs:
|
|
version:
|
|
description: Version of HAOS to build index for
|
|
required: true
|
|
type: string
|
|
|
|
# Called by other workflows (e.g. build.yaml)
|
|
workflow_call:
|
|
inputs:
|
|
version:
|
|
description: Version of HAOS to build index for
|
|
required: true
|
|
type: string
|
|
secrets:
|
|
R2_OS_ARTIFACTS_ID:
|
|
required: true
|
|
R2_OS_ARTIFACTS_KEY:
|
|
required: true
|
|
R2_OS_ARTIFACTS_BUCKET:
|
|
required: true
|
|
R2_OS_ARTIFACTS_ENDPOINT:
|
|
required: true
|
|
CF_ZONE:
|
|
required: true
|
|
CF_PURGE_TOKEN:
|
|
required: true
|
|
|
|
env:
|
|
PYTHON_VERSION: "3.10"
|
|
|
|
jobs:
|
|
build-index:
|
|
name: Build Home Assistant OS artifacts index
|
|
runs-on: ubuntu-22.04
|
|
steps:
|
|
- name: Checkout source
|
|
uses: actions/checkout@v4
|
|
with:
|
|
persist-credentials: false
|
|
|
|
- name: Setup Python version ${{ env.PYTHON_VERSION }}
|
|
uses: actions/setup-python@v5
|
|
with:
|
|
python-version: ${{ env.PYTHON_VERSION }}
|
|
|
|
- name: Install AWS CLI
|
|
run: pip install awscli
|
|
|
|
- name: Create build index
|
|
env:
|
|
AWS_ACCESS_KEY_ID: ${{ secrets.R2_OS_ARTIFACTS_ID }}
|
|
AWS_SECRET_ACCESS_KEY: ${{ secrets.R2_OS_ARTIFACTS_KEY }}
|
|
run: |
|
|
aws s3api list-objects-v2 \
|
|
--bucket "${{ secrets.R2_OS_ARTIFACTS_BUCKET }}" \
|
|
--endpoint-url "${{ secrets.R2_OS_ARTIFACTS_ENDPOINT }}" \
|
|
--prefix "${{ inputs.version }}/" \
|
|
--query 'Contents[].Key' | jq 'map(split("/")[1]) | sort' > "${{ inputs.version }}.json"
|
|
aws s3 cp \
|
|
"${{ inputs.version }}.json" \
|
|
s3://${{ secrets.R2_OS_ARTIFACTS_BUCKET }}/indexes/ \
|
|
--endpoint-url "${{ secrets.R2_OS_ARTIFACTS_ENDPOINT }}"
|
|
|
|
- name: Regenerate artifacts index
|
|
env:
|
|
AWS_ACCESS_KEY_ID: ${{ secrets.R2_OS_ARTIFACTS_ID }}
|
|
AWS_SECRET_ACCESS_KEY: ${{ secrets.R2_OS_ARTIFACTS_KEY }}
|
|
run: |
|
|
aws s3api list-objects-v2 \
|
|
--bucket "${{ secrets.R2_OS_ARTIFACTS_BUCKET }}" \
|
|
--endpoint-url "${{ secrets.R2_OS_ARTIFACTS_ENDPOINT }}" \
|
|
--prefix "indexes/" \
|
|
--query 'Contents[].Key' | jq 'map(capture("indexes/(?<version>[[:digit:]].+).json").version) | sort' > .os-artifacts/index.json
|
|
aws s3 sync \
|
|
.os-artifacts/ \
|
|
s3://${{ secrets.R2_OS_ARTIFACTS_BUCKET }}/ \
|
|
--endpoint-url "${{ secrets.R2_OS_ARTIFACTS_ENDPOINT }}" \
|
|
|
|
- name: Flush CloudFlare cache
|
|
run: |
|
|
curl --silent --show-error --fail -X POST \
|
|
"https://api.cloudflare.com/client/v4/zones/${{ secrets.CF_ZONE }}/purge_cache" \
|
|
-H "Authorization: Bearer ${{ secrets.CF_PURGE_TOKEN }}" \
|
|
-H "Content-Type: application/json" \
|
|
--data '{"files": [
|
|
"https://os-artifacts.home-assistant.io/index.html",
|
|
"https://os-artifacts.home-assistant.io/index.json"
|
|
] }'
|