Skip to content

Commit

Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
setup git-lfs for audio files
Browse files Browse the repository at this point in the history
sassanh committed Feb 13, 2024

Unverified

This commit is not signed, but one or more authors requires that any commit attributed to them is signed.
1 parent c3b7046 commit 6fb2641
Showing 10 changed files with 40 additions and 11 deletions.
5 changes: 5 additions & 0 deletions .gitattributes
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
ubo_app/services/000-sound/sounds/volume.wav filter=lfs diff=lfs merge=lfs -text
ubo_app/services/000-sound/sounds/add.wav filter=lfs diff=lfs merge=lfs -text
ubo_app/services/000-sound/sounds/done.wav filter=lfs diff=lfs merge=lfs -text
ubo_app/services/000-sound/sounds/failure.wav filter=lfs diff=lfs merge=lfs -text
ubo_app/services/000-sound/sounds/scan.wav filter=lfs diff=lfs merge=lfs -text
16 changes: 9 additions & 7 deletions .github/workflows/integration_delivery.yml
Original file line number Diff line number Diff line change
@@ -55,6 +55,8 @@ jobs:
steps:
- uses: actions/checkout@v4
name: Checkout
with:
lfs: true

- uses: actions/setup-python@v5
name: Setup Python
@@ -227,40 +229,40 @@ jobs:
uses: actions/download-artifact@v4
with:
name: ubo_app-bookworm-lite.img.gz
path: /artifacts
path: artifacts

- name: Procure Image
uses: actions/download-artifact@v4
with:
name: ubo_app-bookworm.img.gz
path: /artifacts
path: artifacts

- name: Procure Image
uses: actions/download-artifact@v4
with:
name: ubo_app-bookworm-full.img.gz
path: /artifacts
path: artifacts

- name: Procure Wheel
uses: actions/download-artifact@v4
with:
name: wheel
path: /artifacts
path: artifacts

- name: Procure Binary
uses: actions/download-artifact@v4
with:
name: binary
path: /artifacts
path: artifacts

- name: Release
uses: softprops/action-gh-release@v1
with:
files: /artifacts/*
files: artifacts/*
tag_name: ${{ needs.build.outputs.ubo_app_version }}
release_name: ${{ needs.build.outputs.ubo_app_version }}
release_notes: |
Release of version ${{ needs.build.outputs.ubo_app_version }}
PyPI package: https://pypi.org/project/ubo-app/${{ needs.build.outputs.ubo_app_version }}
prerelease: false
draft: true
draft: false
3 changes: 0 additions & 3 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -109,9 +109,6 @@ stubs/
*/packer/output-arm-image/
*/packer/packer_cache/

# assets
ubo_app/services/*-sound/sounds

# local development
scripts/toggle_local_dependencies.py
scripts/packer/output-*
10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,15 @@
# Changelog

## Version 0.10.3

- chore: setup git-lfs for audio files

## Version 0.10.2

- chore: create ubo images for main branch based on lite, default and full versions
of raspberry os in GitHub workflow
- chore: create GitHub release for main branch in GitHub workflows

## Version 0.10.1

- chore: GitHub workflow to publish pushes on `main` branch to PyPI
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "ubo-app"
version = "0.10.1"
version = "0.10.3"
description = "Ubo main app, running on device initialization. A platform for running other apps."
authors = ["Sassan Haradji <[email protected]>"]
license = "Apache-2.0"
3 changes: 3 additions & 0 deletions ubo_app/services/000-sound/sounds/add.wav
Git LFS file not shown
3 changes: 3 additions & 0 deletions ubo_app/services/000-sound/sounds/done.wav
Git LFS file not shown
3 changes: 3 additions & 0 deletions ubo_app/services/000-sound/sounds/failure.wav
Git LFS file not shown
3 changes: 3 additions & 0 deletions ubo_app/services/000-sound/sounds/scan.wav
Git LFS file not shown
3 changes: 3 additions & 0 deletions ubo_app/services/000-sound/sounds/volume.wav
Git LFS file not shown

0 comments on commit 6fb2641

Please sign in to comment.