From f66b67b0c93fcfc7772699be9a76bfc96396b0b5 Mon Sep 17 00:00:00 2001 From: John Guan Date: Wed, 1 Dec 2021 21:05:52 +0800 Subject: [PATCH] Update demo.yml --- .github/workflows/demo.yml | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/.github/workflows/demo.yml b/.github/workflows/demo.yml index 644d4c5..bb20db8 100644 --- a/.github/workflows/demo.yml +++ b/.github/workflows/demo.yml @@ -31,16 +31,14 @@ jobs: aws-secret-access-key: ${{ secrets.AWS_SECRET_ACCESS_KEY }} aws-region: us-east-2 - - name: Get old instance and snapshot name + - name: Get old instance and snapshot name, create new instance name run: | echo "OLD_INSTANCE_SNAPSHOT_NAME=$(aws lightsail get-instance-snapshots | grep '"name": "CasaOS-Demo-Snapshot-[0-9]' | sed 's/ //g' | sed 's/"//g' | sed 's/,//g' | sed 's/name://g')" >> $GITHUB_ENV - echo "OLD_INSTANCE_SNAPSHOT_NAME=${{ env.OLD_INSTANCE_SNAPSHOT_NAME }} echo "OLD_INSTANCE_NAME=$(aws lightsail get-instances | grep '"name": "CasaOS-Demo-[0-9]' | sed 's/ //g' | sed 's/"//g' | sed 's/,//g' | sed 's/name://g')" >> $GITHUB_ENV - echo "OLD_INSTANCE_NAME=${{ env.OLD_INSTANCE_NAME }} - + echo "NEW_INSTANCE_NAME=CasaOS-Demo-$(date +%s)" >> $GITHUB_ENV + - name: Create instances from snapshot run: | - echo "NEW_INSTANCE_NAME=CasaOS-Demo-$(date +%s)" >> $GITHUB_ENV aws lightsail create-instances-from-snapshot \ --instance-snapshot-name ${{ env.OLD_INSTANCE_SNAPSHOT_NAME }} \ --instance-names ${{ env.NEW_INSTANCE_NAME }} \