Skip to content

Commit

Permalink
adjusts github workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
taukakao committed Feb 19, 2025
1 parent 7939324 commit 3bb25d8
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 11 deletions.
4 changes: 0 additions & 4 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,10 +18,6 @@ jobs:
steps:
- uses: actions/checkout@v4

- name: Get the version
id: get_version
run: echo "{VERSION}={$(cat VERSION)}" >> $GITHUB_OUTPUT

- name: Install build dependencies
run: |
apt-get update
Expand Down
9 changes: 4 additions & 5 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,6 @@ on:
tags:
- '*'

# TODO: publish .deb to github release

jobs:
build-artifacts:
runs-on: ubuntu-latest
Expand All @@ -22,9 +20,10 @@ jobs:
steps:
- uses: actions/checkout@v4

- name: Get the version
id: get_version
run: echo "{VERSION}={$(cat VERSION)}" >> $GITHUB_OUTPUT
- name: Set meson version by tag
id: set_version
run: |
sed -i 's/VTESTING/${{ github.ref_name }}/g' meson.build
- name: Install build dependencies
run: |
Expand Down
1 change: 0 additions & 1 deletion VERSION

This file was deleted.

2 changes: 1 addition & 1 deletion meson.build
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
project('org.vanillaos.FirstSetup',
version: '3.0.0',
version: 'VTESTING',
meson_version: '>= 0.59.0',
default_options: [ 'warning_level=2',
'werror=false',
Expand Down

0 comments on commit 3bb25d8

Please sign in to comment.