twitter-ruby-ads-sdk icon indicating copy to clipboard operation
twitter-ruby-ads-sdk copied to clipboard

Calendar-feature

Open Wickedlilang3l opened this issue 2 years ago • 1 comments

Issue Type: Bug, Question, Improvement or Feature (Select One)

Description:

A brief overview of the issue. Please make sure to include detailed information and a clearly written assessment of the impact or priority of the issue.

Could we add a calendar of spaces and times to be able to coordinate as a collective community?

will you ask Elon to bring me on so I can figure out how to get us all paid on spaces????

Expected Result:

# expected output here

Actual Result:

# actual output here

Steps to Reproduce:

Relates To: #123

Wickedlilang3l avatar Mar 17 '23 17:03 Wickedlilang3l

name: Ruby Gems

on: release: types: [published]

jobs: build: name: Build + Publish runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2
- name: Set up Ruby 2.7
  uses: actions/setup-ruby@v1
  with:
    ruby-version: '2.7'

- name: Publish to RubyGems
  run: |
    mkdir -p $HOME/.gem
    touch $HOME/.gem/credentials
    chmod 0600 $HOME/.gem/credentials
    printf -- "---\n:rubygems_api_key: ${GEM_HOST_API_KEY}\n" > $HOME/.gem/credentials
    gem build *.gemspec
    gem push *.gem
  env:
    GEM_HOST_API_KEY: ${{secrets.RUBYGEMS_AUTH_TOKEN}}

Iksanpakaya avatar Jun 07 '24 02:06 Iksanpakaya