Skip to content

Commit

Permalink
Release workflow (#5)
Browse files Browse the repository at this point in the history
  • Loading branch information
partnerAcemirMendes authored Nov 9, 2024
1 parent 6654c3d commit 58cdddc
Showing 1 changed file with 56 additions and 0 deletions.
56 changes: 56 additions & 0 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,56 @@
name: release

on:
push:
tags: ['v[0-9].[0-9]+.[0-9]+']

permissions:
contents: write

jobs:
build_foxe:
name: build_foxe
runs-on: ubuntu-latest
steps:
- name: checkout
uses: actions/checkout@v4
with:
fetch-depth: 0

- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version: '16'

- name: Install dependencies
run: npm install

- name: Package
run: npm run package

- name: Extract version
id: extract_version
run: |
version=$(node -p "require('./package.json').version")
echo "version=$version" >> $GITHUB_ENV
- name: Create GitHub Release
id: create_release
uses: actions/create-release@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
tag_name: ${{ github.ref }}
release_name: ASAM OSI Hierarchy Panel ${{ env.version }}
draft: false
prerelease: false

- name: Upload Release Asset
uses: actions/upload-release-asset@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
upload_url: ${{ steps.create_release.outputs.upload_url }}
asset_path: lichtblick.asam-osi-hierarchy-panel-${{ env.version }}.foxe
asset_name: lichtblick.asam-osi-hierarchy-panel-${{ env.version }}.foxe
asset_content_type: application/octet-stream

0 comments on commit 58cdddc

Please sign in to comment.