Skip to content

Stuff #2

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 38 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
38 commits
Select commit Hold shift + click to select a range
ee7eb73
Update github_package_repository.yml
putty182 Aug 12, 2021
dc87949
Delete anchore-analysis.yml
putty182 Aug 12, 2021
b25f020
Delete anchore-analysis.yml
putty182 Aug 12, 2021
9c38ace
Update github_package_repository.yml
putty182 Aug 12, 2021
595a829
Update github_package_repository.yml
putty182 Aug 12, 2021
72d1deb
Create allowedlist.yaml
putty182 Aug 12, 2021
8b18297
Update github_package_repository.yml
putty182 Aug 12, 2021
5f9506c
Update Dockerfile
putty182 Aug 12, 2021
129ab45
Update Dockerfile
putty182 Aug 12, 2021
7fe501e
Update Dockerfile
putty182 Aug 12, 2021
c6d173c
Update Dockerfile
putty182 Aug 12, 2021
48a671c
Update github_package_repository.yml
putty182 Aug 12, 2021
af26517
Update allowedlist.yaml
putty182 Aug 12, 2021
b27d292
Merge pull request #1 from putty182/putty182-actions-patch-1
putty182 Aug 12, 2021
8be18fe
Delete README.md
putty182 Aug 12, 2021
9c9c05f
Delete .drone.yml
putty182 Aug 12, 2021
40213f9
Delete .travis.yml
putty182 Aug 12, 2021
b4a3904
Delete DOCKERHUB.md
putty182 Aug 12, 2021
f6d8244
Delete docker-compose.yml
putty182 Aug 12, 2021
de7cbd1
Delete appdefs.xml
putty182 Aug 12, 2021
582d33e
Create statefulset-chromium.yaml
putty182 Aug 12, 2021
cb0e1a4
Update github_package_repository.yml
putty182 Aug 12, 2021
e8b93b1
Update github_package_repository.yml
putty182 Aug 12, 2021
d7c2930
Update github_package_repository.yml
putty182 Aug 12, 2021
b9e09f3
Merge pull request #2 from putty182/putty182-gchrio-port
putty182 Aug 12, 2021
cfc7b79
Update statefulset-chromium.yaml
putty182 Aug 12, 2021
fa82226
Delete allowedlist.yaml
putty182 Oct 12, 2021
ca0d090
Update github_package_repository.yml
putty182 Oct 12, 2021
b59e65f
Update github_package_repository.yml
putty182 Oct 25, 2021
20f207c
Update Dockerfile
putty182 Dec 2, 2021
9991b95
Delete rootfs directory
putty182 Dec 2, 2021
f5cb9c4
Update statefulset-chromium.yaml
putty182 Dec 2, 2021
2566737
Create autostart
putty182 Dec 2, 2021
89fb842
Merge pull request #3 from putty182/feature/lsiobase-rdesktop-web
putty182 Dec 2, 2021
62422ad
Create menu.xml
putty182 Dec 2, 2021
9eb1a0d
Create 60-menu-config
putty182 Dec 2, 2021
80038c7
Merge pull request #4 from putty182/feature/openbox-menu-config
putty182 Dec 2, 2021
5ebf6cc
Update menu.xml
putty182 Dec 2, 2021
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
86 changes: 0 additions & 86 deletions .drone.yml

This file was deleted.

25 changes: 0 additions & 25 deletions .github/workflows/anchore-analysis.yml

This file was deleted.

69 changes: 43 additions & 26 deletions .github/workflows/github_package_repository.yml
Original file line number Diff line number Diff line change
@@ -1,32 +1,49 @@
name: Publish Docker image to GitHub Package Registry
on: push

on:
push:
branches:
- main
pull_request:
branches:
- main
workflow_dispatch: {}
schedule:
- cron: '30 22 * * 3'

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

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

- name: Checkout repository
uses: actions/checkout@v2

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

#This Action Emits 2 Variables, IMAGE_SHA_NAME and IMAGE_URL
#which you can reference in subsequent steps
- name: Publish Docker Image to GPR
uses: machine-learning-apps/gpr-docker-publish@master
id: docker
with:
IMAGE_NAME: 'docker-chromium'
TAG: 'latest'
DOCKERFILE_PATH: 'Dockerfile'
BUILD_CONTEXT: '.'
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: Extract metadata (tags, labels) for Docker
id: meta
uses: docker/metadata-action@v3
with:
images: ${{ env.REGISTRY }}/${{ github.repository }}

# This second step is illustrative and shows how to reference the
# output variables. This is completely optional.
- name: Show outputs of previous step
run: |
echo "The name:tag of the Docker Image is: $VAR1"
echo "The docker image is hosted at $VAR2"
env:
VAR1: ${{ steps.docker.outputs.IMAGE_SHA_NAME }}
VAR2: ${{ steps.docker.outputs.IMAGE_URL }}
- name: Build and push Docker image
id: publish
uses: docker/build-push-action@v2
with:
context: .
push: true
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}
14 changes: 0 additions & 14 deletions .travis.yml

This file was deleted.

Loading