Skip to content

Commit

Permalink
Add sleep in all worflows
Browse files Browse the repository at this point in the history
  • Loading branch information
rodo committed Feb 5, 2024
1 parent fa443b4 commit 37a1727
Show file tree
Hide file tree
Showing 10 changed files with 36 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build-image.yml
Original file line number Diff line number Diff line change
Expand Up @@ -79,8 +79,8 @@ jobs:
tags: tag:ci
version: ${{ vars.TAILSCALE_VERSION }}

- name: Sleep for 30 seconds
run: sleep 30s
- name: Sleep for 10 seconds
run: sleep 10s
shell: bash

- name: Checkout
Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/create-apk-artifact.yml
Original file line number Diff line number Diff line change
Expand Up @@ -85,6 +85,10 @@ jobs:
tags: tag:ci
version: ${{ vars.TAILSCALE_VERSION }}

- name: Sleep for 10 seconds
run: sleep 10s
shell: bash

- name: Import Secrets
id: vault
uses: hashicorp/vault-action@00bce0da9c4b8be526718f7f5f20a88966f31022
Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/publish-apk-s3.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,10 @@ jobs:
tags: tag:ci
version: ${{ vars.TAILSCALE_VERSION }}

- name: Sleep for 10 seconds
run: sleep 10s
shell: bash

- name: Import Secrets
id: vault
uses: hashicorp/vault-action@00bce0da9c4b8be526718f7f5f20a88966f31022
Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/publish-bundle-codepush.yml
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,10 @@ jobs:
tags: tag:ci
version: ${{ vars.TAILSCALE_VERSION }}

- name: Sleep for 10 seconds
run: sleep 10s
shell: bash

- name: Import Secrets
id: imported-secrets
uses: hashicorp/vault-action@00bce0da9c4b8be526718f7f5f20a88966f31022
Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/run-aws.yml
Original file line number Diff line number Diff line change
Expand Up @@ -65,6 +65,10 @@ jobs:
tags: tag:ci
version: ${{ vars.TAILSCALE_VERSION }}

- name: Sleep for 10 seconds
run: sleep 10s
shell: bash

- name: Import Secrets
id: secrets
if: inputs.vault_enabled
Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/run-docker-upload-artifact.yml
Original file line number Diff line number Diff line change
Expand Up @@ -92,6 +92,10 @@ jobs:
tags: tag:ci
version: ${{ vars.TAILSCALE_VERSION }}

- name: Sleep for 10 seconds
run: sleep 10s
shell: bash

- name: Import Secrets
if: inputs.vault_enabled
id: secrets
Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/run-docker-with-db.yml
Original file line number Diff line number Diff line change
Expand Up @@ -105,6 +105,10 @@ jobs:
tags: tag:ci
version: ${{ vars.TAILSCALE_VERSION }}

- name: Sleep for 10 seconds
run: sleep 10s
shell: bash

- name: Import Secrets
if: inputs.vault_enabled
id: secrets
Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/run-docker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -97,6 +97,10 @@ jobs:
tags: tag:ci
version: ${{ vars.TAILSCALE_VERSION }}

- name: Sleep for 10 seconds
run: sleep 10s
shell: bash

- name: Import Secrets
if: inputs.vault_enabled
id: secrets
Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/run-python.yml
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,10 @@ jobs:
tags: tag:ci
version: ${{ vars.TAILSCALE_VERSION }}

- name: Sleep for 10 seconds
run: sleep 10s
shell: bash

- name: Import Secrets
if: inputs.vault_enabled
id: secrets
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/terraform.yml
Original file line number Diff line number Diff line change
Expand Up @@ -91,8 +91,8 @@ jobs:
tags: tag:ci
version: ${{ vars.TAILSCALE_VERSION }}

- name: Sleep for 30 seconds
run: sleep 30s
- name: Sleep for 10 seconds
run: sleep 10s
shell: bash

- name: Import Secrets
Expand Down

0 comments on commit 37a1727

Please sign in to comment.