forked from home-assistant/core
-
Notifications
You must be signed in to change notification settings - Fork 0
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
1 parent
eb1ac94
commit 1943d61
Showing
1 changed file
with
50 additions
and
4 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 |
---|---|---|
|
@@ -94,10 +94,55 @@ jobs: | |
twine upload dist/* --skip-existing | ||
cache_translations: | ||
name: Cache translations | ||
if: github.repository_owner == 'jethub-homeassistant' | ||
needs: init | ||
runs-on: ${{ vars.RUNNER }} | ||
permissions: | ||
contents: read | ||
packages: write | ||
id-token: write | ||
steps: | ||
- name: Checkout the repository | ||
uses: actions/[email protected] | ||
|
||
- name: update build.yaml | ||
run: cp -f build-jethub.yaml build.yaml | ||
|
||
- name: create dir for translations | ||
run: | | ||
mkdir -p build/translations-download | ||
- name: Restore cache translation files | ||
id: cache-translations | ||
uses: actions/cache/restore@v4 | ||
with: | ||
path: build/translations-download/ | ||
key: core-${{ github.sha }}-translations | ||
|
||
- name: Check cache restore result | ||
run: | | ||
echo ${{ steps.cache-translations.outputs.cache-hit }} | ||
- name: Download Translations | ||
if: steps.cache-translations.outputs.cache-hit != 'true' | ||
uses: transifex/cli-action@v2 | ||
with: | ||
token: ${{ secrets.TX_TOKEN }} | ||
args: pull -s -t -a | ||
|
||
- name: Save translation files into cache | ||
if: steps.cache-translations.outputs.cache-hit != 'true' | ||
uses: actions/cache/save@v4 | ||
with: | ||
path: build/translations-download/ | ||
key: core-${{ github.sha }}-translations | ||
|
||
build_base: | ||
name: Build ${{ matrix.arch }} base core image | ||
if: github.repository_owner == 'jethub-homeassistant' | ||
needs: init | ||
needs: [ "init", "cache_translations" ] | ||
runs-on: ${{ vars.RUNNER }} | ||
permissions: | ||
contents: read | ||
|
@@ -215,14 +260,14 @@ jobs: | |
echo ${{ steps.cache-translations.outputs.cache-hit }} | ||
- name: Download Translations | ||
if: ${{ steps.cache-translations.outputs.cache-hit }} == 'false' | ||
if: steps.cache-translations.outputs.cache-hit != 'true' | ||
uses: transifex/cli-action@v2 | ||
with: | ||
token: ${{ secrets.TX_TOKEN }} | ||
args: pull -s -t -a | ||
|
||
- name: Save translation files into cache | ||
if: ${{ steps.cache-translations.outputs.cache-hit }} == 'false' | ||
if: steps.cache-translations.outputs.cache-hit != 'true' | ||
uses: actions/cache/save@v4 | ||
with: | ||
path: build/translations-download/ | ||
|
@@ -258,11 +303,12 @@ jobs: | |
run: find ./homeassistant/components/*/translations -name "*.json" | tar zcvf translations.tar.gz -T - | ||
|
||
- name: Upload translations | ||
uses: actions/upload-artifact@v3 | ||
uses: actions/upload-artifact@v4 | ||
with: | ||
name: translations | ||
path: translations.tar.gz | ||
if-no-files-found: error | ||
overwrite: true | ||
|
||
build_machine: | ||
name: Build ${{ matrix.machine }} machine core image | ||
|