https://github.com/jwdeveloper/mcpackuploaderaction
https://github.com/jwdeveloper/mcpackuploaderaction
Last synced: 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/jwdeveloper/mcpackuploaderaction
- Owner: jwdeveloper
- License: mit
- Created: 2024-01-07T13:27:21.000Z (about 2 years ago)
- Default Branch: master
- Last Pushed: 2024-06-17T23:09:31.000Z (over 1 year ago)
- Last Synced: 2025-01-15T11:11:58.798Z (about 1 year ago)
- Language: JavaScript
- Size: 854 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
- License: LICENSE
- Codeowners: CODEOWNERS
Awesome Lists containing this project
README
```
name: Resourcepack
on:
workflow_dispatch:
push:
branches:
- 'master'
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: 1 Check main
uses: actions/checkout@v3
with:
fetch-depth: 0
- name: zip resourcepack folder
run: (cd resourcepack && zip -r - .) >resourcepack.zip
- name: upload_resource_pack
uses: jwdeveloper/McPackUploaderAction@1.0.8
with:
path: ./resourcepack.zip
- name: Display Upload Results
run: |
echo "Download URL: ${{ steps.upload_resource_pack.outputs.url }}"
echo "Hash Code: ${{ steps.upload_resource_pack.outputs.hash }}"
```