Skip to content

Commit

Permalink
removing lza files and creating build script and workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
edbentho committed Jul 26, 2024
1 parent d09aae8 commit ecb1202
Show file tree
Hide file tree
Showing 1,672 changed files with 62 additions and 388,908 deletions.
38 changes: 38 additions & 0 deletions .github/workflows/docker-build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
name: Build and Publish Docker Image

on:
pull_request

env:
REGISTRY: ghcr.io
IMAGE_NAME: ${{ github.repository }}
REPO_NAME: ${{ github.event.repository.name }}

jobs:
build-and-publish:
permissions:
packages: write
contents: read
runs-on: ubuntu-latest

steps:
- name: checkout
uses: actions/checkout@v4

- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3

- name: Login to GitHub Container Registry
uses: docker/[email protected]
with:
registry: ${{ env.REGISTRY }}
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}

- name: Run build script
run: |
bash build.sh


82 changes: 2 additions & 80 deletions .gitignore
100755 → 100644
Original file line number Diff line number Diff line change
@@ -1,80 +1,2 @@
*.js
*.js.map
!deployment/.typescript/cdk-solution-helper/index.js
!**/create-govcloud-account/index.js
package-lock.json
!jest.config.js
!setEnvVars.js
*.d.ts
*.tsbuildinfo
node_modules
dist
!source/.typescript/lambda/**/*.js
!source/lambda/**/*.js
source/packages/@aws-accelerator/accelerator/lib/logger.js.map
asea-assets

### log files
*.log

### CDK asset staging directory
.cdk.staging
cdk.out

!**/cdk-solution-helper/index.js
!**/update-pipeline-github-token/index.js

deployment/global-s3-assets
deployment/regional-s3-assets
open-source/

### Temporary folders
tmp/
temp/

### yarn files
yarn-error.log

### jest coverage folder
coverage/

### VisualStudioCode ###
.vscode/*

### macOS ###
.DS_Store

### IntelliJ ###
.idea
*.iml

### Exclude Documentation ###
docs
!source/mkdocs/docs

### Exclude Jest test report directory
test-reports
source/lerna-debug.log

### Logger files
*.log

### Debugging
development
.vscode

### Viperlight
viperlight*.zip
/.idea/

### Sonarqube
.scannerwork

*.js.map

### Integ testing
**/integ.*.ts.snapshot
**/integ.*.ts.snapshot/**

# ASEA Assets
asea-assets
*.DS_Store
landing-zone-accelerator-on-aws
239 changes: 0 additions & 239 deletions .viperlightignore

This file was deleted.

4 changes: 0 additions & 4 deletions .viperlightrc

This file was deleted.

Loading

0 comments on commit ecb1202

Please sign in to comment.