Skip to content

Commit

Permalink
Merge pull request #20 from pouya-eghbali/dev
Browse files Browse the repository at this point in the history
Dev
  • Loading branch information
iDmple authored Aug 22, 2023
2 parents 845eac7 + 1861209 commit 5f89c6c
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 4 deletions.
8 changes: 6 additions & 2 deletions .github/workflows/ubuntu-build-dev.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,11 @@ env:

jobs:
build:
runs-on: ubuntu-20.04
strategy:
matrix:
os: [ubuntu-20.04, ubuntu-22.04]

runs-on: ${{ matrix.os }}

steps:
- uses: actions/checkout@v2
Expand Down Expand Up @@ -42,7 +46,7 @@ jobs:
id: info
run: |
echo Built from \#`git rev-parse --short HEAD` > release.md
echo ::set-output name=tag::linux-`git rev-parse --short HEAD`-dev
echo ::set-output name=tag::linux-${{ matrix.os }}-`git rev-parse --short HEAD`-dev
- name: Release
uses: ncipollo/release-action@v1
Expand Down
8 changes: 6 additions & 2 deletions .github/workflows/ubuntu-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,11 @@ env:

jobs:
build:
runs-on: ubuntu-20.04
strategy:
matrix:
os: [ubuntu-20.04, ubuntu-22.04]

runs-on: ${{ matrix.os }}

steps:
- uses: actions/checkout@v2
Expand Down Expand Up @@ -44,7 +48,7 @@ jobs:
id: info
run: |
echo Built from \#`git rev-parse --short HEAD` > release.md
echo ::set-output name=tag::linux-`git rev-parse --short HEAD`
echo ::set-output name=tag::linux-${{ matrix.os }}-`git rev-parse --short HEAD`
- name: Release
uses: ncipollo/release-action@v1
Expand Down

0 comments on commit 5f89c6c

Please sign in to comment.