Sha256: e3ae3189900d82860eb378e9bb3403799b24e8496ed775268425dc7ff59401c6

Contents?: true

Size: 522 Bytes

Versions: 6

Compression:

Stored size: 522 Bytes

Contents

name: Create Release

on:
  push:
    tags:
      - 'v*'

jobs:
  create-release:
    runs-on: ubuntu-latest
    steps:
    - name: Extract tag name
      id: tag
      run: echo "::set-output name=value::${GITHUB_REF##*/}"
    - uses: actions/checkout@v3

    - name: Create Release
      id: create_release
      uses: actions/create-release@v1
      env:
        GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
      with:
        tag_name: ${{ steps.tag.outputs.value }}
        release_name: ${{ steps.tag.outputs.value }}

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
shopify_app-21.9.0 .github/workflows/release.yml
shopify_app-21.8.1 .github/workflows/release.yml
shopify_app-21.8.0 .github/workflows/release.yml
shopify_app-21.7.0 .github/workflows/release.yml
shopify_app-21.6.0 .github/workflows/release.yml
shopify_app-21.5.0 .github/workflows/release.yml