Sha256: 3db1bbce7059cbf67bf085d427914addde5cb205c9a874f13886f059496b9c8c

Contents?: true

Size: 759 Bytes

Versions: 4

Compression:

Stored size: 759 Bytes

Contents

name: release
on:
  push:
    tags: [v*]
jobs:
  docker:
    runs-on: ubuntu-latest
    steps:
      - name: Checkout
        uses: actions/checkout@v2
      - name: Login to docker
        uses: azure/docker-login@v1
        with:
          username: ${{ secrets.DOCKER_USERNAME }}
          password: ${{ secrets.DOCKER_PASSWORD }}
      - name: Get the version
        id: version
        run: echo ::set-output name=VERSION::${GITHUB_REF/refs\/tags\/v/}
      - name: Docker Build and Release
        run: |
          docker build . -t apiaryio/client
          docker tag apiaryio/client apiaryio/client:${{ steps.version.outputs.VERSION }}
          docker push apiaryio/client
          docker push apiaryio/client:${{ steps.version.outputs.VERSION }}

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
apiaryio-0.15.1 .github/workflows/release.yml
apiaryio-0.15.0 .github/workflows/release.yml
apiaryio-0.14.1 .github/workflows/release.yml
apiaryio-0.14.0 .github/workflows/release.yml