-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
bugfix: copy name with space between drive and sync bugfix
- Loading branch information
1 parent
09a79e2
commit 1ee5d8c
Showing
3 changed files
with
38 additions
and
14 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -14,6 +14,13 @@ jobs: | |
update_dockerhub: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: PR Conventional Commit Validation | ||
uses: ytanikin/[email protected] | ||
if: github.event_name == 'pull_request' || github.event_name == 'pull_request_target' | ||
with: | ||
task_types: '["feat","fix","docs","test","ci","refactor","perf","chore","revert","style"]' | ||
add_label: 'true' | ||
|
||
- name: Check out the repo | ||
uses: actions/checkout@v3 | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,14 +7,21 @@ on: | |
branches: | ||
- "main" | ||
- "dev_wrx" | ||
- "external_404" | ||
- "copy_space_fix" | ||
tags: | ||
- 'v*' | ||
|
||
jobs: | ||
update_server: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: PR Conventional Commit Validation | ||
uses: ytanikin/[email protected] | ||
if: github.event_name == 'pull_request' || github.event_name == 'pull_request_target' | ||
with: | ||
task_types: '["feat","fix","docs","test","ci","refactor","perf","chore","revert","style"]' | ||
add_label: 'true' | ||
|
||
- name: Check out the repo | ||
uses: actions/checkout@v3 | ||
with: | ||
|
@@ -40,7 +47,7 @@ jobs: | |
uses: "WyriHaximus/github-action-get-previous-tag@v1" | ||
id: get-latest-tag | ||
with: | ||
fallback: external | ||
fallback: latest | ||
|
||
# - name: Build | ||
# run: cd packages/backend/;go mod tidy;export CGO_ENABLED=0;make build-backend;ls | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters