2020-05-08 14:08:30 +07:00
|
|
|
name: publish
|
|
|
|
|
|
|
|
on:
|
2021-03-26 07:33:18 +07:00
|
|
|
# Shows the manual trigger in GitHub UI
|
|
|
|
# helpful as a back-up in case the GitHub Actions Workflow fails
|
|
|
|
workflow_dispatch:
|
|
|
|
|
2020-05-08 14:08:30 +07:00
|
|
|
release:
|
|
|
|
types: [published]
|
|
|
|
|
|
|
|
jobs:
|
2021-07-15 18:29:40 +07:00
|
|
|
# NOTE: this job requires curl, jq and yarn
|
|
|
|
# All of them are included in ubuntu-latest.
|
|
|
|
# npm:
|
|
|
|
# runs-on: ubuntu-latest
|
|
|
|
# steps:
|
|
|
|
# - uses: actions/checkout@v2
|
|
|
|
|
|
|
|
# - name: Run ./ci/steps/publish-npm.sh
|
|
|
|
# run: ./ci/steps/publish-npm.sh
|
|
|
|
# env:
|
|
|
|
# GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
|
|
# NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
|
|
|
|
|
2021-04-17 02:47:24 +07:00
|
|
|
# NOTE: this job requires curl, jq and docker
|
|
|
|
# All of them are included in ubuntu-latest.
|
2020-05-16 21:55:46 +07:00
|
|
|
docker:
|
2020-05-08 14:08:30 +07:00
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
2021-04-17 02:47:24 +07:00
|
|
|
- uses: actions/checkout@v2
|
|
|
|
|
2020-05-16 21:55:46 +07:00
|
|
|
- name: Run ./ci/steps/push-docker-manifest.sh
|
2021-04-17 02:47:24 +07:00
|
|
|
run: ./ci/steps/push-docker-manifest.sh
|
2020-05-16 21:55:46 +07:00
|
|
|
env:
|
|
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
|
|
DOCKER_USERNAME: ${{ secrets.DOCKER_USERNAME }}
|
2021-07-15 18:18:00 +07:00
|
|
|
DOCKER_PASSWORD: ${{ secrets.DOCKER_PASSWORD }}
|