Skip to content

Commit

Permalink
Define environment (#7)
Browse files Browse the repository at this point in the history
  • Loading branch information
wilson1000-MoJ authored Jan 9, 2024
1 parent 7885603 commit 2c013f8
Showing 1 changed file with 9 additions and 8 deletions.
17 changes: 9 additions & 8 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,7 @@ jobs:
IMAGE_TAG: ${{ github.sha }}

deploy-dev:
environment: development
runs-on: ubuntu-latest
needs: build_ecr
env:
Expand All @@ -59,42 +60,42 @@ jobs:
uses: licenseware/generate-password-and-hash@v1
id: auth-key-hash
with:
length: 32
length: 34
- name: "Auth salt"
uses: licenseware/generate-password-and-hash@v1
id: auth-salt-hash
with:
length: 32
length: 34
- name: "Logged in key"
uses: licenseware/generate-password-and-hash@v1
id: logged-in-key-hash
with:
length: 32
length: 34
- name: "Logged in salt"
uses: licenseware/generate-password-and-hash@v1
id: logged-in-salt-hash
with:
length: 32
length: 34
- name: "Nonce key"
uses: licenseware/generate-password-and-hash@v1
id: nonce-key-hash
with:
length: 32
length: 34
- name: "Nonce salt"
uses: licenseware/generate-password-and-hash@v1
id: nonce-salt-hash
with:
length: 32
length: 34
- name: "Secure key"
uses: licenseware/generate-password-and-hash@v1
id: secure-key-hash
with:
length: 32
length: 34
- name: "Secure salt"
uses: licenseware/generate-password-and-hash@v1
id: secure-salt-hash
with:
length: 32
length: 34

##########################################
#### =============== ####
Expand Down

0 comments on commit 2c013f8

Please sign in to comment.