File tree Expand file tree Collapse file tree 3 files changed +7
-3
lines changed Expand file tree Collapse file tree 3 files changed +7
-3
lines changed Original file line number Diff line number Diff line change 42
42
id : process_release_version
43
43
run : |
44
44
VERSION=$(sudo nix run nixpkgs#yq -- '.postgres_release["postgres'${{ matrix.postgres_version }}'"]' ansible/vars.yml)
45
- VERSION=$(echo $PG_VERSION | tr -d '"') # Remove any surrounding quotes
45
+ VERSION=$(echo $VERSION | tr -d '"') # Remove any surrounding quotes
46
46
if [[ "${{ inputs.postgresVersion }}" != "" ]]; then
47
47
VERSION=${{ inputs.postgresVersion }}
48
48
fi
92
92
id : process_release_version
93
93
run : |
94
94
VERSION=$(sudo nix run nixpkgs#yq -- '.postgres_release["postgres'${{ matrix.postgres_version }}'"]' ansible/vars.yml)
95
- VERSION=$(echo $PG_VERSION | tr -d '"') # Remove any surrounding quotes
95
+ VERSION=$(echo $VERSION | tr -d '"') # Remove any surrounding quotes
96
96
echo "version=$VERSION" >> "$GITHUB_OUTPUT"
97
97
echo "major_version=$(echo $VERSION | cut -d'.' -f1)" >> "$GITHUB_OUTPUT"
98
98
Original file line number Diff line number Diff line change 5
5
branches :
6
6
- develop
7
7
- release/*
8
+ - pcnc/fix-upgrade-scripts
8
9
paths :
9
10
- ' .github/workflows/publish-nix-pgupgrade-scripts.yml'
10
11
workflow_dispatch :
@@ -101,7 +102,7 @@ jobs:
101
102
id : process_release_version
102
103
run : |
103
104
VERSION=$(nix run nixpkgs#yq -- '.postgres_release["postgres'${{ matrix.postgres_version }}'"]' ansible/vars.yml)
104
- VERSION=$(echo $PG_VERSION | tr -d '"') # Remove any surrounding quotes
105
+ VERSION=$(echo $VERSION | tr -d '"') # Remove any surrounding quotes
105
106
if [[ "${{ inputs.postgresVersion }}" != "" ]]; then
106
107
VERSION=${{ inputs.postgresVersion }}
107
108
fi
Original file line number Diff line number Diff line change
1
+ #! /bin/bash
2
+
3
+ aws ec2 start-instances --instance-ids i-01fe91840bda2b0af i-036b68864ced1a02d i-0f69b0c8801fceb0e i-0afad117f95285624 i-02740b25ac62e6335 i-0f7fee2986d58187b --region eu-west-3 --profile supabase &
You can’t perform that action at this time.
0 commit comments