Update actions around ephemeral instances to new api surface #74
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: LocalStack Ephemeral Instance Test | |
on: pull_request | |
jobs: | |
preview-test: | |
permissions: write-all | |
name: 'Test ephemeral instance workflow' | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Deploy Ephemeral Instance | |
uses: jenseng/dynamic-uses@v1 | |
with: | |
uses: LocalStack/setup-localstack@${{ env.GH_ACTION_VERSION }} | |
with: |- | |
{ | |
"github-token": ${{ toJSON(secrets.GITHUB_TOKEN) }}, | |
"state-backend": "ephemeral", | |
"state-action": "start", | |
"skip-ephemeral-stop": "true", | |
"preview-cmd": ${{ toJSON(env.PREVIEW_CMD) }} | |
} | |
env: | |
LOCALSTACK_API_KEY: ${{ secrets.STAGING_LOCALSTACK_API_KEY }} | |
GH_ACTION_VERSION: ${{ github.event_name == 'pull_request' && github.head_ref || github.ref_name }} | |
PREVIEW_CMD: |- | |
awslocal s3 mb s3://test-bucket | |
awslocal sqs create-queue --queue-name=test-queue | |
echo "Deploy is done." | |
# We want explicit shutdown | |
- name: Shutdown ephemeral instance | |
uses: jenseng/dynamic-uses@v1 | |
with: | |
uses: LocalStack/setup-localstack@${{ env.GH_ACTION_VERSION }} | |
with: |- | |
{ | |
"github-token": ${{ toJSON(secrets.GITHUB_TOKEN) }}, | |
"state-backend": "ephemeral", | |
"state-action": "stop" | |
} | |
env: | |
LOCALSTACK_API_KEY: ${{ secrets.STAGING_LOCALSTACK_API_KEY }} | |
GH_ACTION_VERSION: ${{ github.event_name == 'pull_request' && github.head_ref || github.ref_name }} |