Skip to content

Commit

Permalink
chore: fix action ref (#1190)
Browse files Browse the repository at this point in the history
  • Loading branch information
julianpoy authored Dec 21, 2023
2 parents 3d80155 + f30ad08 commit b85fb7a
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/deploy-api-beta.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
- name: Checkout
uses: actions/checkout@v3
with:
ref: inputs.tag
ref: ${{ inputs.tag }}

- name: Install doctl
uses: digitalocean/action-doctl@v2
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/deploy-api-prod.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
- name: Checkout
uses: actions/checkout@v3
with:
ref: inputs.tag
ref: ${{ inputs.tag }}

- name: Install doctl
uses: digitalocean/action-doctl@v2
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/deploy-frontend-beta.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
- name: Checkout
uses: actions/checkout@v3
with:
ref: inputs.tag
ref: ${{ inputs.tag }}

- name: Configure AWS credentials
uses: aws-actions/configure-aws-credentials@v1
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/deploy-frontend-prod.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
- name: Checkout
uses: actions/checkout@v3
with:
ref: inputs.tag
ref: ${{ inputs.tag }}

- name: Configure AWS credentials
uses: aws-actions/configure-aws-credentials@v1
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/deploy-migrate-prod.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
- name: Checkout
uses: actions/checkout@v3
with:
ref: inputs.tag
ref: ${{ inputs.tag }}

- name: Install doctl
uses: digitalocean/action-doctl@v2
Expand Down

0 comments on commit b85fb7a

Please sign in to comment.