ci: Adds changelog and git #144
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: Compile Firmware | |
on: [push] | |
jobs: | |
compile: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v3 | |
with: | |
submodules: recursive | |
- name: Compile application | |
id: compile | |
uses: particle-iot/compile-action@v1 | |
with: | |
particle-platform-name: 'tracker' | |
device-os-version: '5.3.0' | |
- name: Upload artifact | |
uses: actions/upload-artifact@v3 | |
with: | |
name: firmware-artifact | |
path: | | |
${{ steps.compile.outputs.firmware-path }} | |
${{ steps.compile.outputs.target-path }} | |
release: | |
needs: [compile] | |
runs-on: ubuntu-latest | |
permissions: | |
id-token: write | |
contents: write | |
if: ${{ github.ref == 'refs/heads/37-feat-semver' }} | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
submodules: recursive | |
ref: 37-feat-semver | |
- name: Set up Python | |
uses: actions/setup-python@v5 | |
with: | |
python-version: '3.10' | |
cache: 'pip' | |
- name: Install Python Dependencies | |
run: | | |
python -m pip install -r requirements.txt | |
- name: Set up NPM | |
uses: actions/setup-node@v4 | |
with: | |
node-version: '>=20.8.1' | |
- name: Install plugins | |
run: | | |
npm install @semantic-release/exec @semantic-release/git @semantic-release/changelog -D | |
- name: Run Semantic Release | |
env: | |
github-token: ${{ secrets.GITHUB_TOKEN }} | |
run: | | |
npx semantic-release@23 |