Skip to content

nRF52: Add clock device (#564) #29

nRF52: Add clock device (#564)

nRF52: Add clock device (#564) #29

Workflow file for this run

name: Continuous Deployment
permissions:
contents: write
on:
push:
tags:
- "*.*.*"
jobs:
deploy-packages:
runs-on: macos-latest
steps:
- name: Extract tag name
run: echo "TAG_NAME=${GITHUB_REF#refs/tags/}" >> $GITHUB_ENV
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Setup Zig
uses: mlugg/setup-zig@v2
with:
version: 0.14.1
- name: Extract version
run: echo "MICROZIG_VERSION=$(zig build package -- get-version)" >> $GITHUB_ENV
- name: Assemble Packages
run: zig build package -- https://github.com/ZigEmbeddedGroup/microzig/releases/download
- name: Create Release Draft
uses: ncipollo/release-action@v1
id: create_release
with:
tag: ${{ env.TAG_NAME }}
artifactErrorsFailBuild: true
draft: true
generateReleaseNotes: true
artifacts: boxzer-out/${{ env.MICROZIG_VERSION }}/*