Release #9
Workflow file for this run
This file contains hidden or 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: Manual Release | |
| on: | |
| workflow_dispatch: | |
| jobs: | |
| release: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v4 | |
| - name: Show github dir | |
| run: tree -L 3 .github | |
| - name: Trigger and Wait for CI Build | |
| uses: ./.github/actions/trigger-and-wait-build | |
| with: | |
| workflow: "ci-build.yml" | |
| ref: ${{ github.ref_name }} | |
| poll_interval: 20 | |
| - name: Install dpkg-dev | |
| run: sudo apt-get update && sudo apt-get install -y dpkg-dev | |
| - name: Get Debian version | |
| id: changelog | |
| uses: ./.github/actions/get-deb-version | |
| with: | |
| path: "uds-daemon-example" | |
| - name: Show downloaded files | |
| run: ls -l release-artifacts | |