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

22 aws ebs #35

Merged
merged 21 commits into from
Jul 7, 2024
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
work on fixing paths for referencing other actions
  • Loading branch information
mikeheft committed Jul 7, 2024
commit 8724cd8129f18ec045c2139c5cab40ab13b86153
6 changes: 3 additions & 3 deletions .github/workflows/terraform_and_deploy.yaml
Original file line number Diff line number Diff line change
@@ -41,7 +41,7 @@ jobs:
uses: actions/checkout@v3

- name: Run RuboCop
uses: ./rubocop.yaml # Path to your RuboCop action definition
uses: .github/workflows/rubocop.yaml # Path to your RuboCop action definition

rspec:
name: Run RSpec Tests
@@ -53,7 +53,7 @@ jobs:
uses: actions/checkout@v3

- name: Run RSpec Tests
uses: ./rspec_push.yaml
uses: .github/workflows/rspec_push.yaml

deploy:
name: Deploy to Elastic Beanstalk
@@ -70,7 +70,7 @@ jobs:
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: 3.0
ruby-version: 3.2.0

- name: Install dependencies
run: bundle install
Loading