Skip to content

Commit

Permalink
👷 Attempt to fix version deployments
Browse files Browse the repository at this point in the history
  • Loading branch information
kammce committed Jun 11, 2024
1 parent 182c573 commit db678be
Show file tree
Hide file tree
Showing 2 changed files with 95 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/10.6.0.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ on:

jobs:
deploy:
uses: libhal/ci/.github/workflows/deploy_all.yml@5.x.y
uses: ./.github/workflows/deploy_version.yml
with:
version: 10.6.0
secrets: inherit
94 changes: 94 additions & 0 deletions .github/workflows/deploy_version.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,94 @@
name: 🚀 Deploy Version

on:
workflow_call:
inputs:
version:
type: string
required: true

jobs:
cortex-m0:
uses: libhal/ci/.github/workflows/deploy.yml@5.x.y
with:
library: freertos
repo: ${{ github.repository }}
version: ${{ inputs.version }}
conan_version: 2.2.0
compiler: gcc
compiler_version: 12.3
compiler_package: arm-gnu-toolchain
arch: cortex-m0
os: baremetal
external_package: true
secrets: inherit
cortex-m0plus:
uses: libhal/ci/.github/workflows/deploy.yml@5.x.y
with:
library: freertos
repo: ${{ github.repository }}
version: ${{ inputs.version }}
conan_version: 2.2.0
compiler: gcc
compiler_version: 12.3
compiler_package: arm-gnu-toolchain
arch: cortex-m0plus
os: baremetal
external_package: true
secrets: inherit
cortex-m1:
uses: libhal/ci/.github/workflows/deploy.yml@5.x.y
with:
library: freertos
repo: ${{ github.repository }}
version: ${{ inputs.version }}
conan_version: 2.2.0
compiler: gcc
compiler_version: 12.3
compiler_package: arm-gnu-toolchain
arch: cortex-m1
os: baremetal
external_package: true
secrets: inherit
cortex-m3:
uses: libhal/ci/.github/workflows/deploy.yml@5.x.y
with:
library: freertos
repo: ${{ github.repository }}
version: ${{ inputs.version }}
conan_version: 2.2.0
compiler: gcc
compiler_version: 12.3
compiler_package: arm-gnu-toolchain
arch: cortex-m3
os: baremetal
external_package: true
secrets: inherit
cortex-m4:
uses: libhal/ci/.github/workflows/deploy.yml@5.x.y
with:
library: freertos
repo: ${{ github.repository }}
version: ${{ inputs.version }}
conan_version: 2.2.0
compiler: gcc
compiler_version: 12.3
compiler_package: arm-gnu-toolchain
arch: cortex-m4
os: baremetal
external_package: true
secrets: inherit
cortex-m4f:
uses: libhal/ci/.github/workflows/deploy.yml@5.x.y
with:
library: freertos
repo: ${{ github.repository }}
version: ${{ inputs.version }}
conan_version: 2.2.0
compiler: gcc
compiler_version: 12.3
compiler_package: arm-gnu-toolchain
arch: cortex-m4f
os: baremetal
external_package: true
secrets: inherit

0 comments on commit db678be

Please sign in to comment.