Skip to content

Commit

Permalink
CI: prep for deb, try seeing if we can set a variable
Browse files Browse the repository at this point in the history
  • Loading branch information
aaruni96 committed Nov 17, 2023
1 parent 2b54a81 commit 511febd
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions .github/workflows/pkg-deb.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
name: Make a .deb package

on: workflow_dispatch

jobs:
pkg-deb:
runs-on: ubuntu-latest
name: Deb Package
steps:
- uses: actions/checkout@v3
- name: Set output
id: vars
run: echo "tag=${GITHUB_REF#refs/*/}" >> $GITHUB_OUTPUT
- name: Check output
env:
RELEASE_VERSION: ${{ steps.vars.outputs.tag }}
run: |
echo $RELEASE_VERSION
echo ${{ steps.vars.outputs.tag }}

0 comments on commit 511febd

Please sign in to comment.