We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 93fbad0 commit 67c7b14Copy full SHA for 67c7b14
.github/workflows/publish.yml
@@ -4,11 +4,11 @@ on:
4
tags:
5
- "v*.*.*"
6
jobs:
7
- test:
+ publish:
8
runs-on: ubuntu-latest
9
steps:
10
- uses: actions/checkout@v3
11
- - name: Set output
+ - name: Set version
12
id: vars
13
run: echo ::set-output name=tag::${GITHUB_REF#refs/*/}
14
- name: Set up Go
.github/workflows/test.yml
@@ -1,5 +1,10 @@
1
name: Test
2
-on: [push, pull_request]
+on:
3
+ push:
+ branches:
+ - "main"
+ pull_request: {}
+
test:
0 commit comments