Skip to content

Commit 06be01f

Browse files
authored
Rename names of workflows (#37)
1 parent 8f7a15f commit 06be01f

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

.github/workflows/publish-action.yml renamed to .github/workflows/publish.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: Publish action
1+
name: Publish
22
on:
33
release:
44
types: released
@@ -32,7 +32,6 @@ jobs:
3232
script: |
3333
const tagName = context.payload.release.tag_name;
3434
const [major, minor, patch] = tagName.split('.');
35-
const { exec } = require('@actions/exec');
3635
async function tag(tag) {
3736
await exec('git', ['tag', '-f', tag]);
3837
await exec('git', ['push', '-f', 'origin', tag]);

.github/workflows/test-action.yml renamed to .github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: Test action
1+
name: Test
22
on:
33
push:
44
branches: "main"

0 commit comments

Comments
 (0)