fix(GPU): use XDG to get hwdata path #20
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
# Build and publish a release of PowerStation using semantic-release whenever | |
# changes are merged into main. | |
name: "🎉 Release" | |
on: | |
push: | |
branches: | |
- main | |
- v0.x | |
- v1.x | |
paths-ignore: | |
- README.md | |
- "docs/**" | |
# Jobs to run | |
jobs: | |
release: | |
name: Publish | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Setup Node.js | |
uses: actions/setup-node@v1 | |
with: | |
node-version: "20" | |
- name: Install Dependencies | |
run: npm install @semantic-release/exec @google/semantic-release-replace-plugin @semantic-release/git | |
- name: Release | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
run: make sem-release |