Skip to content

Commit

Permalink
Merge pull request #59 from OCNS/fix_push_to_production
Browse files Browse the repository at this point in the history
Fix push to production
  • Loading branch information
mstimberg authored Oct 12, 2023
2 parents 01c13f3 + 8f02667 commit 6b3146c
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 5 deletions.
7 changes: 3 additions & 4 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
@@ -1,10 +1,9 @@
name: Fly Deploy
on:
push:
branches:
- main
on: [push]

jobs:
deploy_staging: # Always deploy to staging
if: github.repository == 'OCNS/simselect' && github.ref == 'refs/heads/main'
name: Deploy app to simselect-dev
runs-on: ubuntu-latest
steps:
Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,10 @@ jobs:
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: '3.11'
cache: 'pip'
cache-dependency-path: requirements.txt
- name: Install dependencies
run: python -m pip install -r requirements.txt -r requirements-dev.txt
- name: Run pre-commit hooks
Expand Down
2 changes: 1 addition & 1 deletion src/project_browser.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
import data


__version__ = "0.2.0"
__version__ = "0.2.1"

REPO_URL = "https://github.com/OCNS/simselect"
DATA_FOLDER = "simtools"
Expand Down

0 comments on commit 6b3146c

Please sign in to comment.