Skip to content

Commit

Permalink
Merge pull request #17 from usabilla/configure-eve
Browse files Browse the repository at this point in the history
Configure eve to create a release from tag
  • Loading branch information
vadzim-kazak authored Mar 18, 2022
2 parents 756ea8a + b10e440 commit 2ead0e4
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 9 deletions.
18 changes: 18 additions & 0 deletions .config/eve.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
version: 1 # This ensures backwards compatibilities
team: platform # The team that owns that project

plugins:
approve-dependabot-prs:
enabled: false
assign-milestone:
enabled: true
close-milestone-from-github-release:
enabled: true
create-github-release-from-git-tag:
enabled: true
create-next-milestone:
enabled: true
merge-dependabot-prs:
enabled: false
remove-milestone-from-unmerged-pr:
enabled: true
Original file line number Diff line number Diff line change
@@ -1,10 +1,9 @@
name: release-action
name: publish-action
on:
push:
tags:
- '[0-9]+.[0-9]+.[0-9]+'
release:
types: [published]
jobs:
create-release:
publish-release:
runs-on: ubuntu-20.04
permissions:
contents: write
Expand All @@ -13,10 +12,6 @@ jobs:
uses: actions/checkout@v3
with:
ref: ${{github.ref_name}}
- name: Create release
uses: ncipollo/release-action@v1
with:
tag: ${{github.ref_name}}
- name: Set up docker buildx
uses: docker/setup-buildx-action@v1
with:
Expand Down

0 comments on commit 2ead0e4

Please sign in to comment.