Sha256: a724172412b3f7c7b3edf4db97fccd1c2e5f61b7dcbebb4d01e6de3715537bc9

Contents?: true

Size: 523 Bytes

Versions: 9

Compression:

Stored size: 523 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 "value=${GITHUB_REF##*/}" >> "$GITHUB_OUTPUT"
    - 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

9 entries across 9 versions & 1 rubygems

Version Path
shopify_app-22.4.0 .github/workflows/release.yml
shopify_app-22.3.1 .github/workflows/release.yml
shopify_app-22.3.0 .github/workflows/release.yml
shopify_app-22.2.1 .github/workflows/release.yml
shopify_app-22.2.0 .github/workflows/release.yml
shopify_app-22.1.0 .github/workflows/release.yml
shopify_app-22.0.1 .github/workflows/release.yml
shopify_app-22.00.0 .github/workflows/release.yml
shopify_app-21.10.0 .github/workflows/release.yml