fix: gihub workflow usage

This commit is contained in:
lab 2023-11-10 10:02:08 +08:00
parent dd48a9ebf5
commit 9f2876f8a2

View File

@ -9,34 +9,28 @@ on:
jobs: jobs:
Explore-Gitea-Actions: Explore-Gitea-Actions:
runs-on: ubuntu-latest runs-on: ubuntu-latest
container:
image: catthehacker/ubuntu:act-latest
steps: 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!" name: Checkout
- run: echo "🔎 The name of your branch is ${{ gitea.ref }} and your repository is ${{ gitea.repository }}."
- name: Checkout repository code
uses: actions/checkout@v3 uses: actions/checkout@v3
- 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: Set up QEMU
- name: List files in the repository uses: docker/setup-qemu-action@v3
run: | -
ls ${{ gitea.workspace }} name: Set up Docker Buildx
- run: echo "🍏 This job's status is ${{ job.status }}." uses: docker/setup-buildx-action@v3
- name: Set up Docker Buildx -
uses: https://github.com/docker/setup-buildx-action@v3 name: Login to Docker Hub
- name: Login to Docker Hub uses: docker/login-action@v3
uses: https://github.com/docker/login-action@v3
with: with:
username: ${{ secrets.DOCKERHUB_USERNAME }} username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }} password: ${{ secrets.DOCKERHUB_TOKEN }}
- name: Build and push -
uses: https://github.com/docker/build-push-action@v2 name: Build and push
uses: docker/build-push-action@v5
with: with:
context: . context: .
push: true push: true
platforms: linux/amd64
tags: | tags: |
${{ secrets.DOCKERHUB_USERNAME }}/${{ secrets.DOCKERHUB_REPOSITORY }}:latest ${{ secrets.DOCKERHUB_USERNAME }}/${{ secrets.DOCKERHUB_REPOSITORY }}:latest
- run: echo "🍏 This job's status is ${{ job.status }}."