diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 9901811e..79f45f5f 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -42,7 +42,7 @@ jobs: with: context: ./cli push: ${{ github.event_name != 'pull_request' }} - tags: ${{ steps.prep.outputs.tags }},latest + tags: ${{ steps.prep.outputs.tags }} dockerhub: name: Publish redoc image to DockerHub runs-on: ubuntu-latest diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 34ee6557..a31778b8 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -45,31 +45,6 @@ jobs: name: bundles path: bundles - run: npm run e2e - # disable this for now - # deploy-demo: - # needs: [bundle, unit-tests, e2e-tests] - # runs-on: ubuntu-latest - # steps: - # - uses: actions/checkout@v3 - # - name: Configure AWS Credentials - # uses: aws-actions/configure-aws-credentials@v1 - # with: - # aws-access-key-id: ${{ secrets.AWS_ACCESS_KEY_ID }} - # aws-secret-access-key: ${{ secrets.AWS_SECRET_ACCESS_KEY }} - # aws-region: us-east-1 - # - name: Install dependencies - # run: npm ci - # - name: Download bundled artifacts - # uses: actions/download-artifact@v3 - # with: - # name: bundles - # path: bundles - # - name: Build package - # run: npm run build:demo - # - name: Deploy to S3 bucket - # run: npm run deploy:demo - # - name: Invalidate - # run: aws cloudfront create-invalidation --distribution-id ${{ secrets.CF_DEMO_DISTRIBUTION_ID }} --paths "/*" publish: name: Publish to NPM needs: [bundle, unit-tests, e2e-tests]