From 13d55bc800154da378f5202f022b32d4d55650d2 Mon Sep 17 00:00:00 2001 From: Lino Silva Date: Sun, 13 Oct 2024 22:03:55 +0100 Subject: [PATCH] actions --- .gitea/workflows/build-and-publish.yaml | 19 +++++++++++++++++++ .gitea/workflows/sync-prices.yaml | 21 +++++++++++++++++++++ 2 files changed, 40 insertions(+) create mode 100644 .gitea/workflows/build-and-publish.yaml create mode 100644 .gitea/workflows/sync-prices.yaml diff --git a/.gitea/workflows/build-and-publish.yaml b/.gitea/workflows/build-and-publish.yaml new file mode 100644 index 0000000..9673146 --- /dev/null +++ b/.gitea/workflows/build-and-publish.yaml @@ -0,0 +1,19 @@ +name: Build and publish +run-name: Build docker image and publish to registry +on: [push] + +jobs: + build: + runs-on: ubuntu-latest + container: + image: catthehacker/ubuntu:act-latest + steps: + - uses: https://github.com/actions/checkout@v4 + - name: Use Node.js + uses: https://github.com/actions/setup-node@v3 + with: + node-version: '20.18' + - run: docker compose build + env: + GHOSTFOLIO_SECURITY_TOKEN: ${{ secrets.GHOSTFOLIO_SECURITY_TOKEN }} + GHOSTFOLIO_HOST: ${{ secrets.GHOSTFOLIO_HOST }} diff --git a/.gitea/workflows/sync-prices.yaml b/.gitea/workflows/sync-prices.yaml new file mode 100644 index 0000000..3486e8a --- /dev/null +++ b/.gitea/workflows/sync-prices.yaml @@ -0,0 +1,21 @@ +name: Gitea Actions Demo +run-name: ${{ gitea.actor }} is testing out Gitea Actions 🚀 +on: + schedule: + - cron: "0 5/12 * * *" + +jobs: + run: + runs-on: ubuntu-latest + steps: + - run: echo "🎉 The job was automatically triggered by a ${{ gitea.event_name }} event." + - run: echo "🐧 This job is now running on a ${{ runner.os }} server hosted by Gitea!" + - run: echo "🔎 The name of your branch is ${{ gitea.ref }} and your repository is ${{ gitea.repository }}." + - name: Check out repository code + uses: actions/checkout@v4 + - run: echo "💡 The ${{ gitea.repository }} repository has been cloned to the runner." + - run: echo "🖥️ The workflow is now ready to test your code on the runner." + - name: List files in the repository + run: | + ls ${{ gitea.workspace }} + - run: echo "🍏 This job's status is ${{ job.status }}."