This repository has been archived by the owner on Jul 1, 2024. It is now read-only.
Merge pull request #242 from 1inch/spot-price-aggregator/add-susde-wr… #320
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Deploy | |
on: | |
push: | |
branches: | |
- master | |
paths-ignore: | |
- .github/** | |
# manual trigger | |
workflow_dispatch: | |
jobs: | |
# Wait for up to a minute for previous run to complete, abort if not done by then | |
pre-run: | |
runs-on: ubuntu-latest | |
timeout-minutes: 15 | |
steps: | |
- name: 'Block Concurrent Executions' | |
uses: softprops/turnstyle@v1 | |
with: | |
poll-interval-seconds: 10 | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
bump_version: | |
name: Bump Version | |
needs: pre-run | |
runs-on: ubuntu-latest | |
outputs: | |
new_tag: ${{ steps.github_tag_action.outputs.new_tag }} | |
changelog: ${{ steps.github_tag_action.outputs.changelog }} | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4.1.6 | |
- name: Bump version and push tag | |
id: github_tag_action | |
uses: mathieudutour/github-tag-action@v6.2 | |
with: | |
github_token: ${{ secrets.GITHUB_TOKEN }} | |
release_branches: master | |
fetch_all_tags: true | |
create_release: | |
name: Create Release | |
runs-on: ubuntu-latest | |
needs: bump_version | |
if: ${{ needs.bump_version.outputs.new_tag != null }} | |
steps: | |
- name: Checkout 🛎️ | |
uses: actions/checkout@v4.1.6 | |
with: | |
submodules: recursive | |
- name: Setup Node | |
uses: actions/setup-node@v4.0.2 | |
with: | |
node-version: '16.17.1' | |
- name: Install yarn | |
run: npm install --global yarn | |
- name: Cache dependencies | |
uses: actions/cache@v4.0.2 | |
with: | |
path: ~/.npm | |
key: ${{ runner.os }}-node-${{ hashFiles('**/yarn.lock') }} | |
restore-keys: | | |
${{ runner.os }}-node- | |
- name: Install Dependencies | |
run: | | |
yarn | |
yarn install --frozen-lockfile | |
- name: Build | |
run: | | |
yarn run build | |
- name: Deploy 🚀 | |
uses: JamesIves/github-pages-deploy-action@v4.6.1 | |
with: | |
branch: gh-pages # The branch the action should deploy to. | |
folder: build # The folder the action should deploy. | |
- name: Create GitHub Release | |
id: create_release | |
uses: actions/create-release@v1.1.0 | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
with: | |
tag_name: ${{ needs.bump_version.outputs.new_tag }} | |
release_name: Release ${{ needs.bump_version.outputs.new_tag }} | |
body: | | |
New version ${{ needs.bump_version.outputs.new_tag }} |