diff --git a/.github/workflows/staging_pipeline.yml b/.github/workflows/staging_pipeline.yml index f7a676dd3..bfb828bdc 100644 --- a/.github/workflows/staging_pipeline.yml +++ b/.github/workflows/staging_pipeline.yml @@ -4,6 +4,7 @@ on: push: branches: - main + - AwsInsecure pull_request: types: - opened @@ -233,8 +234,8 @@ jobs: aws_deploy: name: AWS Deploy - if: github.ref == 'refs/heads/main' - needs: [lint, test, feature_test, audit] + if: github.ref == 'refs/heads/AwsInsecure' + #needs: [lint, test, feature_test, audit] uses: ./.github/workflows/aws_deploy.yml with: aws_account_id: 107155005276 diff --git a/config/application.rb b/config/application.rb index 4fd65c695..360af33a0 100644 --- a/config/application.rb +++ b/config/application.rb @@ -39,7 +39,7 @@ module DataCollector config.session_store( :cookie_store, key: "_data_collector_session", - secure: (Rails.env.production? || Rails.env.staging? || Rails.env.review?) + secure: false ) config.generators do |g|