Skip to content

Commit

Permalink
Merge pull request #7 from ar-io/update-registry-dev-id
Browse files Browse the repository at this point in the history
fix(actions): remove prod action for evolve
  • Loading branch information
atticusofsparta authored Aug 5, 2024
2 parents 03dfb11 + 1983343 commit c677eff
Show file tree
Hide file tree
Showing 4 changed files with 34 additions and 64 deletions.
18 changes: 0 additions & 18 deletions .github/workflows/build_test.yaml

This file was deleted.

34 changes: 34 additions & 0 deletions .github/workflows/build_test_evolve.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
name: Build and Test

on: [push]

jobs:
# TODO: add unit tests using bused
integration:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4.0.2
with:
node-version-file: '.nvmrc'
cache: 'yarn'

- run: yarn --frozen-lockfile
- run: yarn aos:build
- run: yarn test
evolve:
# Run on main branch only
runs-on: ubuntu-latest
if: github.ref == 'refs/heads/main'
needs: integration
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4.0.2
with:
node-version-file: '.nvmrc'
cache: 'yarn'
- run: yarn --frozen-lockfile
- run: yarn evolve
env:
WALLET: ${{ secrets.WALLET }}
REGISTRY_ID: ${{ secrets.REGISTRY_ID }}
23 changes: 0 additions & 23 deletions .github/workflows/evolve-dev.yml

This file was deleted.

23 changes: 0 additions & 23 deletions .github/workflows/evolve-prod.yml

This file was deleted.

0 comments on commit c677eff

Please sign in to comment.