-
-
Notifications
You must be signed in to change notification settings - Fork 97
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
add top level workflow for pushing AMIs
- Loading branch information
1 parent
4c44c09
commit 1a20608
Showing
6 changed files
with
46 additions
and
36 deletions.
There are no files selected for viewing
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
name: Push current NixOS release AMIs | ||
|
||
on: | ||
workflow_dispatch: | ||
# TODO: just for testing, switch to workflow_dispatch only | ||
push: | ||
branches: ["terraform-create-amis"] | ||
|
||
permissions: | ||
id-token: write | ||
contents: read | ||
|
||
jobs: | ||
x86_64-amis: | ||
uses: ./.github/workflows/create-amis.yml | ||
with: | ||
build_nr: 222822268 | ||
architecture: x86_64 | ||
release: "23.05" | ||
aarch64-amis: | ||
uses: ./.github/workflows/create-amis.yml | ||
with: | ||
build_nr: 222822272 | ||
architecture: aarch64 | ||
release: "23.05" |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,7 +2,6 @@ | |
|
||
# Terraform | ||
.terraform* | ||
!.terraform.lock.hcl | ||
*tfstate | ||
*tfstate.backup | ||
*.aarch64.*.tfvars | ||
|
This file was deleted.
Oops, something went wrong.
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
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