Skip to content

Commit

Permalink
add all the files
Browse files Browse the repository at this point in the history
  • Loading branch information
spfeiffe committed May 8, 2024
0 parents commit 8d913fc
Show file tree
Hide file tree
Showing 148 changed files with 2,377,499 additions and 0 deletions.
86 changes: 86 additions & 0 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,86 @@
name: Build

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

on:
push:
branches:
- docker-container

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

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

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

- name: Log in to the Container registry
uses: docker/login-action@v3
with:
registry: ${{ env.REGISTRY }}
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}

- name: Extract metadata (tags, labels) for Docker
id: meta
uses: docker/metadata-action@v4
with:
images: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}

- name: Build and push Docker image
id: build_push_action
uses: docker/build-push-action@v4
with:
context: .
push: true
provenance: false
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}
cache-from: type=gha
cache-to: type=gha,mode=max

# scan:
# runs-on: ubuntu-latest
# needs: build-and-push-image
# steps:
# - uses: actions/checkout@v3
# - name: Scan image
# id: scan
# uses: anchore/[email protected]
# with:
# fail-build: false
# image: ${{needs.build-and-push-image.outputs.image_name}}
# - name: upload Anchore scan SARIF report
# uses: github/codeql-action/upload-sarif@v2
# with:
# sarif_file: ${{ steps.scan.outputs.sarif }}

# deploy:
# runs-on: ubuntu-latest
# needs: scan
#
# steps:
# - uses: actions/checkout@v3
# env:
# CG_USERNAME: ${{ secrets.CG_USERNAME }}
# if: ${{ env.CG_USERNAME }}
# - name: Deploy to cloud.gov
# uses: cloud-gov/cg-cli-tools@main
# env:
# CG_USERNAME: ${{ secrets.CG_USERNAME }}
# if: ${{ env.CG_USERNAME }}
# with:
# cf_username: ${{ secrets.CG_USERNAME }}
# cf_password: ${{ secrets.CG_PASSWORD }}
# cf_org: ${{ secrets.CF_ORG }}
# cf_space: ${{ secrets.CF_SPACE }}
# command: cf delete Heat_CVD_UHI_Dashboard -f ; cf push -f manifest.yml
88 changes: 88 additions & 0 deletions .github/workflows/deploy.yml.bak
Original file line number Diff line number Diff line change
@@ -0,0 +1,88 @@
name: Build

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

on:
push:
branches:
- docker-container

jobs:
build-and-push-image:
runs-on: ubuntu-latest
outputs:
image_name: "${{ steps.meta.outputs.tags }}@${{ steps.build_push_action.outputs.digest }}"
permissions:
contents: read
packages: write

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

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

- name: Log in to the Container registry
uses: docker/login-action@v3
with:
registry: ${{ env.REGISTRY }}
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}

- name: Extract metadata (tags, labels) for Docker
id: meta
uses: docker/metadata-action@v4
with:
images: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}

- name: Build and push Docker image
id: build_push_action
uses: docker/build-push-action@v4
with:
context: .
push: true
provenance: false
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}
cache-from: type=gha
cache-to: type=gha,mode=max

# scan:
# runs-on: ubuntu-latest
# needs: build-and-push-image
# steps:
# - uses: actions/checkout@v3
# - name: Scan image
# id: scan
# uses: anchore/[email protected]
# with:
# fail-build: false
# image: ${{needs.build-and-push-image.outputs.image_name}}
# - name: upload Anchore scan SARIF report
# uses: github/codeql-action/upload-sarif@v2
# with:
# sarif_file: ${{ steps.scan.outputs.sarif }}

# deploy:
# runs-on: ubuntu-latest
# needs: scan
#
# steps:
# - uses: actions/checkout@v3
# env:
# CG_USERNAME: ${{ secrets.CG_USERNAME }}
# if: ${{ env.CG_USERNAME }}
# - name: Deploy to cloud.gov
# uses: cloud-gov/cg-cli-tools@main
# env:
# CG_USERNAME: ${{ secrets.CG_USERNAME }}
# if: ${{ env.CG_USERNAME }}
# with:
# cf_username: ${{ secrets.CG_USERNAME }}
# cf_password: ${{ secrets.CG_PASSWORD }}
# cf_org: ${{ secrets.CF_ORG }}
# cf_space: ${{ secrets.CF_SPACE }}
# command: cf delete Heat_CVD_UHI_Dashboard -f ; cf push -f manifest.yml
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
.Rhistory
3 changes: 3 additions & 0 deletions .grype.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
ignore:
- package:
location: "/opt/shiny-server/node_modules/**"
9 changes: 9 additions & 0 deletions .lintr
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
linters: linters_with_defaults(
line_length_linter(120),
commented_code_linter = NULL
)
exclusions: list(
"inst/doc/creating_linters.R" = 1,
"inst/example/bad.R",
"tests/testthat/exclusions-test"
)
3 changes: 3 additions & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{
"r.interpreterPath": "C:\\dev\\projects\\R\\R-4.2.2"
}
Loading

0 comments on commit 8d913fc

Please sign in to comment.