Skip to content

Commit

Permalink
Merge pull request #2153 from gravitl/release_v0.18.5
Browse files Browse the repository at this point in the history
Release v0.18.5
  • Loading branch information
0xdcarns authored Mar 30, 2023
2 parents 23eddd2 + e2e2b2b commit 1d3e3ad
Show file tree
Hide file tree
Showing 282 changed files with 10,010 additions and 16,444 deletions.
8 changes: 7 additions & 1 deletion .github/ISSUE_TEMPLATE/bug-report.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,13 @@ body:
label: Version
description: What version are you running?
options:
- v0.17.1
- v0.18.5
- v0.18.4
- v0.18.3
- v0.18.2
- v0.18.1
- v0.18.0
- v0.17.1
- v0.17.0
- v0.16.3
- v0.16.2
Expand Down
58 changes: 58 additions & 0 deletions .github/workflows/branchtest.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,58 @@
name: Deploy and Test Branch

on:
workflow_dispatch:
pull_request:
types: [opened, synchronize, reopened]
branches: [develop]

jobs:
skip-check:
runs-on: ubuntu-latest
outputs:
skip: ${{ steps.check.outputs.skip }}
steps:
- id: skip
uses: fkirc/skip-duplicate-actions@v5
with:
concurrent_skipping: 'always'
getbranch:
runs-on: ubuntu-latest
needs: skip-check
if: ${{ needs.skip-check.outputs.skip != 'true' }}
outputs:
netclientbranch: ${{ steps.checkbranch.outputs.netclientbranch }}
steps:
- name: checkout
uses: actions/checkout@v3
with:
repository: gravitl/netclient
ref: develop
- name: check if branch exists
id: checkbranch
run: |
if git show-ref ${{ github.head_ref}}; then
echo branch exists
echo "netclientbranch=${{ github.head_ref }}" >> $GITHUB_OUTPUT
else
echo branch does not exist
echo "netclientbranch=develop" >> $GITHUB_OUTPUT
fi
terraform:
needs: getbranch
uses: gravitl/devops/.github/workflows/terraform.yml@master
with:
netmakerbranch: ${{ github.head_ref }}
netclientbranch: ${{ needs.getbranch.outputs.netclientbranch }}
secrets: inherit


testbranch:
needs: [getbranch, terraform]
uses: gravitl/devops/.github/workflows/branchtest.yml@master
with:
tag: ${{ github.run_id }}-${{ github.run_attempt }}
network: terraform
secrets: inherit

Loading

0 comments on commit 1d3e3ad

Please sign in to comment.