Add Docker container action for OTA releases #2
Workflow file for this run
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
name: 'Test OTA Release' | |
on: | |
push: | |
branches: | |
- 'main' | |
pull_request: | |
branches: | |
- 'main' | |
jobs: | |
test_ota_release: | |
name: 'Test OTA Release Action' | |
runs-on: 'ubuntu-latest' | |
steps: | |
- name: 'Checkout' | |
uses: 'actions/checkout@v4' | |
- name: 'Create artifacts for test' | |
run: | | |
mkdir -p artifacts | |
hello_time="$(date +'%Y-%m-%dT%H:%M:%S%z')" | |
echo "${hello_time} Hello, World!" > artifacts/hello.txt | |
sleep 4.2 | |
goodbye_time="$(date +'%Y-%m-%dT%H:%M:%S%z')" | |
echo "${goodbye_time}: Goodbye, World!" > artifacts/goodbye.txt | |
- name: 'Test OTA Release' | |
uses: './' # Use an action in the root directory | |
with: | |
release_type: 'file' | |
persist_dir: '/tmp/persist' | |
artifacts_dir: 'artifacts' | |
base_install_path_on_device: '/tmp/ota' | |
project_access_token: ${{ secrets.TEST_PROJECT_ACCESS_TOKEN }} | |
signing_key_mangement: 'local' | |
signing_key: ${{ secrets.TEST_SIGNING_KEY }} | |
signing_key_password: ${{ secrets.TEST_SIGNING_KEY_PASSWORD }} |