Commit a169bdb 1 parent 09a924a commit a169bdb Copy full SHA for a169bdb
File tree 1 file changed +25
-0
lines changed
1 file changed +25
-0
lines changed Original file line number Diff line number Diff line change
1
+ name : Manual Purge
2
+ on :
3
+ workflow_dispatch :
4
+
5
+ jobs :
6
+ sweeper :
7
+ runs-on : ubuntu-latest
8
+ steps :
9
+ # Checkout should always be before setup-go to ensure caching is working
10
+ - name : Checkout
11
+ uses : actions/checkout@v4
12
+ - name : Install Go
13
+ uses : actions/setup-go@v5
14
+ with :
15
+ go-version : 1.23.5
16
+ - name : Install Terraform
17
+ uses : hashicorp/setup-terraform@v3
18
+ - name : Run sweepers
19
+ run : make sweep
20
+ env :
21
+ TF_TEST_DOMAIN : scaleway-terraform.com
22
+ SCW_ACCESS_KEY : ${{ secrets.SCW_ACCESS_KEY }}
23
+ SCW_SECRET_KEY : ${{ secrets.SCW_SECRET_KEY }}
24
+ SCW_DEFAULT_ORGANIZATION_ID : ${{ secrets.SCW_DEFAULT_ORGANIZATION_ID }}
25
+ SCW_DEFAULT_PROJECT_ID : ${{ secrets.SCW_DEFAULT_PROJECT_ID }}
You can’t perform that action at this time.
0 commit comments