From f38f5786e952ae915079daadc5ea370f11fe79ef Mon Sep 17 00:00:00 2001 From: Alie Date: Mon, 29 Jan 2024 14:00:35 +0100 Subject: [PATCH] fixed a typo --- .gitea/workflows/01_test.yaml | 2 +- .gitea/workflows/02_build.yaml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.gitea/workflows/01_test.yaml b/.gitea/workflows/01_test.yaml index 4c6fda0..bd9b7e5 100644 --- a/.gitea/workflows/01_test.yaml +++ b/.gitea/workflows/01_test.yaml @@ -11,7 +11,7 @@ jobs: - name: Check out repository code uses: actions/checkout@v3 - name: Get access token from secret - run: echo -e ${{ secrets.MASTODON_SECRET }} > mastodon-data.toml + run: echo -e "${{ secrets.MASTODON_SECRET }}" > mastodon-data.toml - name: Check code run: cargo check - name: Run tests diff --git a/.gitea/workflows/02_build.yaml b/.gitea/workflows/02_build.yaml index 3702ecd..a057fbb 100644 --- a/.gitea/workflows/02_build.yaml +++ b/.gitea/workflows/02_build.yaml @@ -20,7 +20,7 @@ jobs: with: # list of Docker images to use as base name for tags images: | - git.fai.st/fedi-image-bot/bot-api + git.fai.st/fedi-image-bot/mastodon-image-uploader-bot # generate Docker tags based on the following events/attributes tags: | type=raw,value=latest,enable=${{ github.ref == format('refs/heads/{0}', 'main') }}