Skip to content

Fix hash of a dynamic changing config file #36

Fix hash of a dynamic changing config file

Fix hash of a dynamic changing config file #36

Workflow file for this run

name: Create releases
on:
push:
tags:
- v*
jobs:
test_pull_request:
runs-on: ubuntu-latest
permissions: write-all
steps:
- uses: actions/checkout@v2
- name: Get tag version
id: tag_name
run: echo ::set-output name=SOURCE_TAG::${GITHUB_REF#refs/tags/}
- name: Get repo name
id: repo_name
run: echo ::set-output name=REPOSITORY_NAME::$(echo "$GITHUB_REPOSITORY" | sed -e "s/:refs//")
- name: Build a release
run: |
bash create_release.sh $SOURCE_TAG
env:
SOURCE_TAG: ${{ steps.tag_name.outputs.SOURCE_TAG }}
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
GITHUB_REPO: ${{ steps.repo_name.outputs.REPOSITORY_NAME }}