Sha256: 66a00595fdcfe7c33a1f76cfaf089ad233241cf59024310c9ec332833e6617bd
Contents?: true
Size: 994 Bytes
Versions: 139
Compression:
Stored size: 994 Bytes
Contents
--- on: push: tags: - 'v*' - '!v*.pre*' name: Create Release jobs: build: name: Create Release runs-on: ubuntu-latest steps: - name: Get version from tag id: tag_name shell: bash run: | echo ::set-output name=current_version::${GITHUB_REF#refs/tags/v} - name: Checkout code uses: actions/checkout@v2 - name: Get Changelog Entry id: changelog_reader uses: mindsers/changelog-reader-action@v1 with: version: ${{ steps.tag_name.outputs.current_version }} path: ./CHANGELOG.md - name: Create Release id: create_release uses: actions/create-release@v1 env: GITHUB_TOKEN: ${{ secrets.GEM_RELEASE_GIT_TOKEN }} with: tag_name: ${{ github.ref }} release_name: Release ${{ github.ref }} body: ${{ steps.changelog_reader.outputs.log_entry }} draft: false prerelease: false
Version data entries
139 entries across 139 versions & 5 rubygems