Skip to content

Commit

Permalink
Update deploy.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
fcancelinha committed Aug 15, 2024
1 parent 4806f2b commit b68e27c
Showing 1 changed file with 11 additions and 16 deletions.
27 changes: 11 additions & 16 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
@@ -1,26 +1,21 @@
name: nordern.nvim deployment

name: Bump version
on:
push:
branches:
branches:
- master
pull_request:
branches: master
types: [opened, synchronize]

jobs:
deploy:
runs-on: ubuntu-latest
build:
runs-on: ubuntu-22.04
permissions:
contents: write
steps:
- name: checkout
uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
fetch-depth: '0'

- name: bump version and push tag
uses: anothrNick/[email protected]
if: ${{ github.event_name == 'push' && !contains(join(github.event.commits.*.message, ', '), '#skip') }}
- name: Bump version and push tag
uses: anothrNick/github-tag-action@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
DEFAULT_BUMP: patch
RELEASE_BRANCHES: master
WITH_V: true
DRY_RUN: true

0 comments on commit b68e27c

Please sign in to comment.