Skip to content

Commit

Permalink
build(ci): ignore updates to certain files (#80)
Browse files Browse the repository at this point in the history
  • Loading branch information
nuxencs authored Feb 25, 2024
1 parent bccb7ff commit 5fe9081
Showing 1 changed file with 14 additions and 4 deletions.
18 changes: 14 additions & 4 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,23 @@ name: build
on:
push:
branches:
- "master"
- "develop"
- 'master'
- 'develop'
tags:
- 'v*'
paths-ignore:
- '.github/ISSUE_TEMPLATE/**'
- 'distrib/**'
- 'config.yaml'
- 'docker-compose.yml'
- '**.md'
pull_request:
paths-ignore:
- '.github/ISSUE_TEMPLATE/**'
- 'distrib/**'
- 'config.yaml'
- 'docker-compose.yml'
- '**.md'

permissions:
contents: write
Expand All @@ -23,7 +35,6 @@ jobs:
with:
fetch-depth: 0

# 1.20 is the last version to support Windows < 10, Server < 2016, and MacOS < 1.15.
- name: Set up Go
uses: actions/setup-go@v5
with:
Expand All @@ -43,7 +54,6 @@ jobs:
with:
fetch-depth: 0

# 1.20 is the last version to support Windows < 10, Server < 2016, and MacOS < 1.15.
- name: Set up Go
uses: actions/setup-go@v5
with:
Expand Down

0 comments on commit 5fe9081

Please sign in to comment.