From 1bbe8d42a35d465d2601528024be5414083010f5 Mon Sep 17 00:00:00 2001 From: Amit Serper Date: Mon, 4 Dec 2023 20:57:08 -0500 Subject: [PATCH] github action --- .github/workflows/masto-rss.yml | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 .github/workflows/masto-rss.yml diff --git a/.github/workflows/masto-rss.yml b/.github/workflows/masto-rss.yml new file mode 100644 index 0000000..4b2e886 --- /dev/null +++ b/.github/workflows/masto-rss.yml @@ -0,0 +1,20 @@ +name: Masto-rss + +on: + push: + branches: [ main ] + pull_request: + branches: [ main ] + +jobs: + build: + + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v1 + - name: Build & Push Image + run: | + echo "${{ secrets.DH_PASSWORD }}" | docker login -u "amitserper" --password-stdin + docker build -t amitserper/masto-rss . + docker push amitserper/masto-rss