fix: Revert README images from dev-minimal to premium glass/chrome style #1
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Release | |
| on: | |
| push: | |
| tags: | |
| - 'v*' | |
| jobs: | |
| create-release: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Create Release | |
| uses: actions/create-release@v1 | |
| env: | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
| with: | |
| tag_name: ${{ github.ref_name }} | |
| release_name: ACOS ${{ github.ref_name }} | |
| body: | | |
| ## 🚀 Agentic Creator OS ${{ github.ref_name }} | |
| The operating system for golden age creators. | |
| ### Quick Start | |
| ```bash | |
| git clone https://github.com/frankxai/agentic-creator-os.git | |
| cd agentic-creator-os | |
| ./install.sh | |
| /acos | |
| ``` | |
| See [CHANGELOG](CHANGELOG.md) for full release notes. | |
| draft: false | |
| prerelease: false |