From 60a7cde8d31e8fef41c65c78c7be0f6cd389ecf3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E3=82=A2=E3=83=80=E3=83=A0=E3=80=80=E3=83=A9=E3=83=83?= =?UTF-8?q?=E3=83=90=E3=83=8B=E3=80=80=E3=82=A2=E3=83=89=E3=83=8A=E3=83=B3?= =?UTF-8?q?=20=28Adam=20Rabbani=20Adnan=29?= Date: Tue, 15 Sep 2020 17:11:45 +0700 Subject: [PATCH 1/2] Create blank.yml --- .github/workflows/blank.yml | 33 +++++++++++++++++++++++++++++++++ 1 file changed, 33 insertions(+) create mode 100644 .github/workflows/blank.yml diff --git a/.github/workflows/blank.yml b/.github/workflows/blank.yml new file mode 100644 index 0000000..9ddbd2e --- /dev/null +++ b/.github/workflows/blank.yml @@ -0,0 +1,33 @@ +# This is a basic workflow to help you get started with Actions + +name: CI + +# Controls when the action will run. Triggers the workflow on push or pull request +# events but only for the master branch +on: + push: + branches: [ master ] + pull_request: + branches: [ master ] + +# A workflow run is made up of one or more jobs that can run sequentially or in parallel +jobs: + # This workflow contains a single job called "build" + build: + # The type of runner that the job will run on + runs-on: ubuntu-latest + + # Steps represent a sequence of tasks that will be executed as part of the job + steps: + # Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it + - uses: actions/checkout@v2 + + # Runs a single command using the runners shell + - name: Run a one-line script + run: echo Hello, world! + + # Runs a set of commands using the runners shell + - name: Run a multi-line script + run: | + echo Add other actions to build, + echo test, and deploy your project. From 1d87f510ef2877bfecf7be1f2a1fa96332e9c034 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E3=82=A2=E3=83=80=E3=83=A0=E3=80=80=E3=83=A9=E3=83=83?= =?UTF-8?q?=E3=83=90=E3=83=8B=E3=80=80=E3=82=A2=E3=83=89=E3=83=8A=E3=83=B3?= =?UTF-8?q?=20=28Adam=20Rabbani=20Adnan=29?= Date: Tue, 15 Sep 2020 17:13:09 +0700 Subject: [PATCH 2/2] Create Dockerfile --- action-a/Dockerfile | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 action-a/Dockerfile diff --git a/action-a/Dockerfile b/action-a/Dockerfile new file mode 100644 index 0000000..44e85cb --- /dev/null +++ b/action-a/Dockerfile @@ -0,0 +1,5 @@ +FROM debian:9.5-slim + +ADD entrypoint.sh /entrypoint.sh +RUN chmod +x /entrypoint.sh +ENTRYPOINT ["/entrypoint.sh"]