Sha256: 591e267c2872a89a3b6849c2d7b982f02c232e9689514668654bc82b145ba857
Contents?: true
Size: 926 Bytes
Versions: 2
Compression:
Stored size: 926 Bytes
Contents
name: Deploy on: workflow_dispatch: branches: [ master ] jobs: test: name: Publish gem runs-on: ubuntu-latest environment: production steps: - uses: actions/checkout@v2 - name: Set up Ruby uses: ruby/setup-ruby@v1 with: ruby-version: '3.0' bundler-cache: true - name: Run tests run: bundle exec rake spec - name: Publish gem uses: dawidd6/action-publish-gem@v1 with: api_key: ${{secrets.RUBYGEMS_API_KEY}} - name: Create git tag uses: duderman/gh-gem-tag-action@v1 id: release_info with: github_token: ${{ secrets.GITHUB_TOKEN }} - uses: xresloader/upload-to-github-release@v1 env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} with: tag_name: ${{ steps.release_info.outputs.tag }} draft: false file: '*.gem'
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
danger-logging_lint-0.0.4 | .github/workflows/deploy.yml |
danger-logging_lint-0.0.3 | .github/workflows/deploy.yml |