Skip to content

Commit

Permalink
secure-tunnel-server: fix image tag (#266)
Browse files Browse the repository at this point in the history
  • Loading branch information
at-wat authored May 19, 2021
1 parent e491b2c commit 62a380f
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/tunnel-server.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,15 +7,15 @@ on:
branches:
- master
tags:
- '*'
- 'v*'

jobs:
tunnel-server:
runs-on: ubuntu-latest
steps:
- name: Set image tag
if: startsWith(github.ref, 'refs/tags')
run: echo "IMAGE_TAG=${GITHUB_REF#refs/tags}" | tee -a ${GITHUB_ENV}
if: startsWith(github.ref, 'refs/tags/v')
run: echo "IMAGE_TAG=${GITHUB_REF#refs/tags/v}" | tee -a ${GITHUB_ENV}

- name: Checkout
uses: actions/checkout@v2
Expand Down

0 comments on commit 62a380f

Please sign in to comment.