Explorar el Código

add test-semver.yml

Yuki Takei hace 6 años
padre
commit
b2c619ed77
Se han modificado 1 ficheros con 26 adiciones y 0 borrados
  1. 26 0
      .github/workflows/test-semver.yml

+ 26 - 0
.github/workflows/test-semver.yml

@@ -0,0 +1,26 @@
+name: Test tagging
+
+on:
+  push:
+    branches:
+      - support/github-actions
+
+jobs:
+
+  build-rc:
+
+    runs-on: ubuntu-latest
+
+    steps:
+    - uses: actions/checkout@v1
+
+    - name: Get SemVer
+      run: |
+        SEMVER=`npm run version --silent`
+
+    - name: Docker Tags by SemVer
+      uses: weseek/ghaction-docker-tags-by-semver@v1
+      with:
+        source: node
+        target: weseek/growi
+        semver: $SEMVER