From 2126d46a72fd82bb93b87cb68dab49c53d2683bb Mon Sep 17 00:00:00 2001 From: Marcel Schwarz Date: Tue, 28 Apr 2020 00:32:05 +0200 Subject: [PATCH] Create main.yml --- .github/workflows/main.yml | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 .github/workflows/main.yml diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml new file mode 100644 index 0000000..7fe5ef7 --- /dev/null +++ b/.github/workflows/main.yml @@ -0,0 +1,29 @@ +# 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 + - github-actions + schedule: + - cron: 30 18 * * * + +# A workflow run is made up of one or more jobs that can run sequentially or in parallel +jobs: + create-image: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v2 # Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it + + - name: Login to Dockerhub + run: echo ${{secrets.DOCKERHUB_PASSWORD}} | docker login -u ${{secrets.DOCKERHUB_USER}} --password-stdin + + - name: Build the image + run: docker build -t ${{secrets.DOCKERHUB_USER}}/debian-devscripts . + + - name: Upload image + run: docker push ${{secrets.DOCKERHUB_USER}}/debian-devscripts