Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: create docker image with environment #17

Merged
merged 15 commits into from
Nov 3, 2024
Merged
5 changes: 4 additions & 1 deletion .github/workflows/sfs.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
name: "CI for SFS project"

on:
push:
branches:
- develop
pull_request:
branches:
- main
Expand Down Expand Up @@ -93,7 +96,7 @@ jobs:
needs: [test-code]
runs-on: ubuntu-latest
environment:
name: ${{ (github.ref == 'refs/heads/main' && 'latest') || (github.ref == 'refs/heads/develop' && 'dev') }}
name: ${{ (github.ref == 'refs/heads/main' && 'latest') || (github.ref == 'refs/heads/develop' && 'develop') }}
steps:
- name: 'Checkout code'
uses: actions/checkout@v3
Expand Down
Loading