rexthecoder / Pinky

MIT License
10 stars 0 forks source link

Error: Can't find 'action.yml', 'action.yaml' or 'Dockerfile' under '/**/**/src'. Did you forget to run actions/checkout before running your local action? #1

Closed vikash2310 closed 1 year ago

vikash2310 commented 1 year ago

Getting this error after building the apk.Why does the runner is trying to find the action.yml inside the src folder? Any Idea?

rexthecoder commented 1 year ago

Can I see your GitHub action? @vikash2310

vikash2310 commented 1 year ago

@rexthecoder

vikash2310 commented 1 year ago

`name: Android Release

on:

push: branches: [ "main" ] pull_request: branches: [ "master" ]

workflow_dispatch:

jobs:

apk: runs-on: ubuntu-latest

name: apk build
steps:
  - name: Checkout
    uses: actions/checkout@v2
  - name: Generate Flutter apk

    uses: rexthecoder/Pinky@v1.0

    with:
      path: build/app/outputs/flutter-apk/app-release.apk
      # filename: app-armeabi-v7a-debug.apk
      filetype: apk
      comment: "New Release"
      telegram_token: 5892012967:AAHpbUMINcMUro5zu8TQ2sf0aFFVEu76-tA
      telegram_chat_id: -10014245****`
rexthecoder commented 1 year ago

Cool, there might be a problem with the action path on my side. My GitHub action is experiencing some issues.

I will fix it as soon as I resolve my actions

Thanks

vikash2310 commented 1 year ago

sure!Thanks for making this Github action module.

rexthecoder commented 1 year ago

Hello @vikash2310,

The issue has been fixed. You can check out rexthecoder/Pinky@v1.3. It has all the updates.

Kindly close the issue, incase it works for you.

vikash2310 commented 1 year ago

Hello @rexthecoder , The previous issue has been fixed. Thanks!